我试图在使用system()
调用程序时为minisat尝试一些随机参数。我之前从未做过这样的事情,不得不承认我很丢失。
例如我可以这样做:
system("minisat -luby -rinc=1.5 <dataset here>")
如何将其随机化为-luby
或-no-luby
并随机化1.5
的{{1}}值?
答案 0 :(得分:1)
system只是一个接收c风格字符串作为参数的普通函数。你可以自己构造字符串。
bool luby = true;
double rinc = 1.5;
system((std::string("minisat -")+(luby?"luby":"no-luby")+" -rinc="+std::to_string(rinc)).c_str());
答案 1 :(得分:0)
您需要使用变量动态构造命令。
bool luby = true; // if you want -no-luby, set it to be false
double rinc = 1.5; // set it to be other values
char command[1024];
std::string luby_str = (luby ? "luby" : "no-luby");
std::snprintf(command, sizeof(command), "minisat -%s -rinc=%f", luby_str.c_str(), rinc);
system(command);
正如@RemyLebeau指出的那样,C ++风格应该更好。
std::string command;
std::ostringstream os;
os << "minisat -" << luby_str << " -rinc=" << rinc;
system(command.c_str());
答案 2 :(得分:0)
在这里,您可以尝试使用这样的随机字符串命令生成器来创建随机命令:
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <random>
#include <string>
std::string getCommand()
{
std::string result = "minisat ";
srand(time(0));
int lubyflag = rand() % 2; //Not the best way to generate random nums
//better to use something from <random>
if (lubyflag == 1)
{
result += "-luby ";
} else
{
result += "-no-luby ";
}
double lower_bound = 0; //Now were using <random>
double upper_bound = 2; //Or whatever range
std::uniform_real_distribution<double> unif(lower_bound,upper_bound);
std::default_random_engine re;
double rinc_double = unif(re);
result += "-rinc=" + rinc_double;
return result;
}
int main()
{
std::string command = getCommand();
system(command.c_str());
}
如果您想要所有控件,请执行以下操作:
bool flaga = false;
double valueb = 1.5;
system(std::string("ministat " + ((flaga) ? "-luby " : "-no-luby ") +
"rinc= " + std::to_string(valueb)).c_str());