本文整理汇总了C++中SmartPtr::InitializeProblem方法的典型用法代码示例。如果您正苦于以下问题:C++ SmartPtr::InitializeProblem方法的具体用法?C++ SmartPtr::InitializeProblem怎么用?C++ SmartPtr::InitializeProblem使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SmartPtr
的用法示例。
在下文中一共展示了SmartPtr::InitializeProblem方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(
int argv,
char* argc[]
)
{
if( argv == 2 && !strcmp(argc[1], "list") )
{
print_problems();
return 0;
}
#ifdef TIME_LIMIT
if (argv==4)
{
int runtime = atoi(argc[3]);
pthread_t thread;
pthread_create(&thread, NULL, killer_thread, &runtime);
}
else
#endif
if( argv != 3 && argv != 1 )
{
printf("Usage: %s (this will ask for problem name)\n", argc[0]);
printf(" %s ProblemName N\n", argc[0]);
printf(" where N is a positive parameter determining problem size\n");
printf(" %s list\n", argc[0]);
printf(" to list all registered problems.\n");
return -1;
}
SmartPtr<RegisteredTNLP> tnlp;
Index N;
if( argv != 1 )
{
// Create an instance of your nlp...
tnlp = RegisteredTNLPs::GetTNLP(argc[1]);
if( !IsValid(tnlp) )
{
printf("Problem with name \"%s\" not known.\n", argc[1]);
print_problems();
return -2;
}
N = atoi(argc[2]);
}
else
{
bool done = false;
while( !done )
{
string inputword;
cout << "Enter problem name (or \"list\" for all available names):\n";
cin >> inputword;
if( inputword == "list" )
{
print_problems();
}
else
{
tnlp = RegisteredTNLPs::GetTNLP(inputword.c_str());
if( !IsValid(tnlp) )
{
printf("Problem with name \"%s\" not known.\n", inputword.c_str());
}
else
{
done = true;
}
}
}
cout << "Enter problem size:\n";
cin >> N;
}
if( N <= 0 )
{
printf("Given problem size is invalid.\n");
return -3;
}
bool retval = tnlp->InitializeProblem(N);
if( !retval )
{
printf("Cannot initialize problem. Abort.\n");
return -4;
}
// Create an instance of the IpoptApplication
// We are using the factory, since this allows us to compile this
// example with an Ipopt Windows DLL
SmartPtr<IpoptApplication> app = IpoptApplicationFactory();
ApplicationReturnStatus status;
status = app->Initialize();
if( status != Solve_Succeeded )
{
printf("\n\n*** Error during initialization!\n");
return (int) status;
}
// Set option to use internal scaling
//.........这里部分代码省略.........
示例2: main
int main(int argv, char* argc[])
{
mpi_check(MPI_Init(&argv, &argc));
// identify the process
char hostname[256];
gethostname(hostname, sizeof(hostname));
printf("Process with PID %d on %s ready to run\n", getpid(), hostname);
fflush(stdout);
int mpi_rank, mpi_size;
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
MPI_Comm_size(MPI_COMM_WORLD, &mpi_size);
Index N = -1;
Index NS = -1;
if(argv == 3)
{
N = atoi(argc[1]);
NS = atoi(argc[2]);
}
// if rank == MASTER
if(mpi_rank == 0)
{
if (argv != 3) {
cout << "Usage: $mpirun -n NP ./solve_problem N NS ";
return 0;
}
// Create an instance of your nlp...
SmartPtr<MittelmannBndryCntrlDiri1> tnlp = new MittelmannBndryCntrlDiri1();
if (N <= 0 || NS <= 0) {
printf("Given problem size is invalid.\n");
return -3;
}
bool retval = tnlp->InitializeProblem(N, NS);
if (!retval) {
printf("Cannot initialize problem. Abort.\n");
return -4;
}
// Create an instance of the IpoptApplication
// We are using the factory, since this allows us to compile this
// example with an Ipopt Windows DLL
SmartPtr<IpoptApplication> app = IpoptApplicationFactory();
app->Options()->SetNumericValue("tol", 1e-7);
app->Options()->SetStringValue("mu_strategy", "adaptive");
app->Options()->SetStringValue("output_file", "ipopt.out");
app->Options()->SetIntegerValue("problem_dimension", N);
app->Options()->SetIntegerValue("problem_scenarios", NS);
// const std::string prefix = ""; Index nl;
// cout << "Retval:" << app->Options()->GetIntegerValue("problem_dimension", nl, prefix) << endl;
// cout << "problem_dimension: " << nl << endl;
ApplicationReturnStatus status = app->Initialize();
if (status != Solve_Succeeded) {
printf("\n\n*** Error during initialization!\n");
return (int) status;
}
// Set option to use internal scaling
// DOES NOT WORK FOR VLUKL* PROBLEMS:
// app->Options()->SetStringValueIfUnset("nlp_scaling_method", "user-scaling");
status = app->OptimizeTNLP(GetRawPtr(tnlp));
}
else
{
// child process waits for master to initiate the solution phase
int pardiso_mtype = -2; // symmetric H_i
int schur_factorization = 1; //augmented factorization
SchurSolve schurSolver = SchurSolve(pardiso_mtype, schur_factorization, MPI_COMM_WORLD);
schurSolver.initSystem_OptimalControl(NULL, N, NS);
while(1) {
//do test on termination, set by master process
int terminate = 0;
MPI_Bcast(&terminate, 1, MPI_INT, 0, MPI_COMM_WORLD);
if (terminate)
break;
//get flag new_matrix to child processes
bool new_matrix;
MPI_Bcast(&new_matrix, 1, MPI_C_BOOL, 0, MPI_COMM_WORLD);
//update system if necessary
if(new_matrix)
{
schurSolver.updateSystem(NULL);
}
int nrhs = 1;
schurSolver.solveSystem(NULL, NULL, nrhs);
//.........这里部分代码省略.........