snapshot of svn

This commit is contained in:
Uldis Locans
2016-10-10 14:49:32 +02:00
commit 4fa529aaea
122 changed files with 23153 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#include <iostream>
#include "DKSBaseMuSR.h"
/** No accelerator device is used, this test is used to confirm, that search functions
* used for auto-tuning work properly
*/
int main() {
DKSBaseMuSR base;
std::cout << "Start test" << std::endl;
base.testAutoTuning();
std::cout << "Test finished" << std::endl;
return 0;
}