Home
last modified time | relevance | path

Searched refs:initguess (Results 1 – 14 of 14) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dheur_mpec.c321 SCIP_Real* initguess = NULL; in heurExec() local
357 SCIP_CALL( SCIPallocBufferArray(scip, &initguess, SCIPgetNVars(scip)) ); in heurExec()
377 initguess[i] = SCIPgetSolVal(scip, NULL, var); in heurExec()
380 …SCIP_CALL( SCIPnlpiSetInitialGuess(heurdata->nlpi, heurdata->nlpiprob, initguess, NULL, NULL, NULL… in heurExec()
515 BMScopyMemoryArray(initguess, primal, SCIPgetNVars(scip)); in heurExec()
599 initguess[idx] = primal[idx] >= 0.5 ? 0.0 : 1.0; in heurExec()
602 …SCIP_CALL( SCIPnlpiSetInitialGuess(heurdata->nlpi, heurdata->nlpiprob, initguess, NULL, NULL, NULL… in heurExec()
612 SCIPfreeBufferArrayNull(scip, &initguess); in heurExec()
H A Dnlp.h553 … SCIP_Real* initguess /**< new initial guess, or NULL to clear previous one */
H A Dnlp.c5736 … SCIP_Real* initguess /**< new initial guess, or NULL to clear previous one */ in SCIPnlpSetInitialGuess() argument
5745 if( initguess == NULL ) in SCIPnlpSetInitialGuess()
5754 BMScopyMemoryArray(nlp->initialguess, initguess, nlp->nvars); in SCIPnlpSetInitialGuess()
5760 BMScopyMemoryArray(nlp->initialguess, initguess, nlp->nvars); in SCIPnlpSetInitialGuess()
/dports/math/SCIP/scip-7.0.3/tests/src/nlpi/
H A Dnlpi.c108 SCIP_Real initguess[4]; in testNlpi() local
210 initguess[0] = 0.6; in testNlpi()
211 initguess[1] = 0.5; in testNlpi()
212 initguess[2] = 0.4; in testNlpi()
213 initguess[3] = 2.0; in testNlpi()
214 SCIP_CALL( SCIPnlpiSetInitialGuess(nlpi, nlpiprob, initguess, NULL, NULL, NULL) ); in testNlpi()
/dports/math/SCIP/scip-7.0.3/src/nlpi/
H A Dnlpi_worhp.c89 …SCIP_Real* initguess; /**< initial values for primal variables, or NULL if not… member
1068 BMSfreeMemoryArrayNull(&(*problem)->initguess); in SCIP_DECL_NLPIFREEPROBLEM()
1113 BMSfreeMemoryArrayNull(&problem->initguess); in SCIP_DECL_NLPIADDVARS()
1338 BMSfreeMemoryArrayNull(&problem->initguess); // @TODO keep initguess for remaining variables in SCIP_DECL_NLPIDELVARSET()
1509 if( !problem->initguess ) in SCIP_DECL_NLPISETINITIALGUESS()
1511 …if( BMSduplicateMemoryArray(&problem->initguess, primalvalues, SCIPnlpiOracleGetNVars(problem->ora… in SCIP_DECL_NLPISETINITIALGUESS()
1516 … BMScopyMemoryArray(problem->initguess, primalvalues, SCIPnlpiOracleGetNVars(problem->oracle)); in SCIP_DECL_NLPISETINITIALGUESS()
1521 BMSfreeMemoryArrayNull(&problem->initguess); in SCIP_DECL_NLPISETINITIALGUESS()
1601 if( problem->initguess != NULL ) in SCIP_DECL_NLPISOLVE()
1603 BMScopyMemoryArray(problem->opt->X, problem->initguess, problem->opt->n); in SCIP_DECL_NLPISOLVE()
H A Dnlpi_filtersqp.c667 if( problem->initguess != NULL ) in setupStart()
670 x[i] = problem->initguess[i]; in setupStart()
711 if( problem->initguess != NULL ) in setupStart()
714 BMSfreeBlockMemoryArray(data->blkmem, &problem->initguess, problem->varssize); in setupStart()
1033 BMSfreeBlockMemoryArrayNull(data->blkmem, &(*problem)->initguess, (*problem)->varssize); in SCIP_DECL_NLPIFREEPROBLEM()
1101 BMSfreeBlockMemoryArrayNull(nlpidata->blkmem, &problem->initguess, problem->varssize); in SCIP_DECL_NLPIADDVARS()
1466 BMSfreeBlockMemoryArrayNull(nlpidata->blkmem, &problem->initguess, problem->varssize); in SCIP_DECL_NLPIDELVARSET()
1730 if( problem->initguess == NULL ) in SCIP_DECL_NLPISETINITIALGUESS()
1732 … SCIP_ALLOC( BMSallocBlockMemoryArray(nlpidata->blkmem, &problem->initguess, problem->varssize) ); in SCIP_DECL_NLPISETINITIALGUESS()
1735 BMScopyMemoryArray(problem->initguess, primalvalues, SCIPnlpiOracleGetNVars(problem->oracle)); in SCIP_DECL_NLPISETINITIALGUESS()
[all …]
H A Dnlpi_ipopt.cpp148 …SCIP_Real* initguess; /**< initial values for primal variables, or NULL if not… member
164 firstrun(TRUE), initguess(NULL), in SCIP_NlpiProblem()
684 BMSfreeMemoryArrayNull(&(*problem)->initguess); in SCIP_DECL_NLPIFREEPROBLEM()
733 BMSfreeMemoryArrayNull(&problem->initguess); in SCIP_DECL_NLPIADDVARS()
911 BMSfreeMemoryArrayNull(&problem->initguess); // @TODO keep initguess for remaining variables in SCIP_DECL_NLPIDELVARSET()
1076 if( !problem->initguess ) in SCIP_DECL_NLPISETINITIALGUESS()
1078 …if( BMSduplicateMemoryArray(&problem->initguess, primalvalues, SCIPnlpiOracleGetNVars(problem->ora… in SCIP_DECL_NLPISETINITIALGUESS()
1083 … BMScopyMemoryArray(problem->initguess, primalvalues, SCIPnlpiOracleGetNVars(problem->oracle)); in SCIP_DECL_NLPISETINITIALGUESS()
1088 BMSfreeMemoryArrayNull(&problem->initguess); in SCIP_DECL_NLPISETINITIALGUESS()
2240 if( nlpiproblem->initguess ) in get_starting_point()
[all …]
/dports/science/PETSc/petsc-3.14.1/include/petsc/private/
H A Dpetscconvestimpl.h14 PetscErrorCode (*initguess)(PetscConvEst, PetscInt, DM, Vec); member
/dports/science/siesta/siesta-4.1.5/Src/
H A Datomlwf.F416 call initguess(ia,iorb,isa(ia),nelectr,
614 subroutine initguess(ia,iorb,is,ne,cg,cgval,Node) subroutine
727 end subroutine initguess
/dports/science/PETSc/petsc-3.14.1/src/snes/utils/
H A Dconvest.c196 ierr = (*ce->ops->initguess)(ce, r, dm, u);CHKERRQ(ierr); in PetscConvEstComputeInitialGuess()
512 (*ce)->ops->initguess = PetscConvEstInitGuessSNES_Private; in PetscConvEstCreate()
/dports/science/PETSc/petsc-3.14.1/src/ts/utils/
H A Dtsconvest.c257 ce->ops->initguess = PetscConvEstInitGuessTS_Private; in PetscConvEstUseTS()
/dports/science/PETSc/petsc-3.14.1/
H A DTAGS12544 PetscErrorCode (*initguess)initguess14,435
H A DCTAGS46739 initguess include/petsc/private/petscconvestimpl.h /^ PetscErrorCode (*initguess)(PetscConvEst, Pe…
/dports/science/siesta/siesta-4.1.5/Docs/
H A DCHANGES23783 subroutine initguess: lmax, lmaxs and nzls erased from the input, information