以前にC++で乱数を実行しましたが、CPLEXで試してみるとまったく機能しません。
cplexでランダムにする方法を知りたい
C ++でランダムにする方法:
int t = (rand() % 10) +1 ;
私はこれを試します:
int main() {
srand(time(0));
IloEnv env;
IloInt j;
IloModel model(env);
IloInt dt = (rand() % 10) +1 ;
if(j > dt){
...
}