Originally posted by: SystemAdmin
[bill1985m said:]
Hello,
I am a beginner, so not knowing too much about what I have done wrong. If the array is 2d everything works just fine, but once it becomes 3D, I receive an error saying "error C2679: binary '>>': no operator found...".
Thanks a million.
Bill
_____________________________
typedef IloArray<IloArray<IloNumArray> > MutiMatrix;
int main(){
IloEnv env;
try {
MutiMatrix cost(env);
const char* filename = "abc.dat";
file >> cost;
//...
return 0;
}
}
#CPLEXOptimizers#DecisionOptimization