当前位置: 首页>>代码示例>>C++>>正文


C++ SCIPerrorMessage函数代码示例

本文整理汇总了C++中SCIPerrorMessage函数的典型用法代码示例。如果您正苦于以下问题:C++ SCIPerrorMessage函数的具体用法?C++ SCIPerrorMessage怎么用?C++ SCIPerrorMessage使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了SCIPerrorMessage函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: SCIP_DECL_NLPICHGCONSSIDES

/** change constraint bounds
 *
 * input:
 *  - nlpi datastructure for solver interface
 *  - problem datastructure for problem instance
 *  - nconss number of constraints to change sides
 *  - indices indices of constraints to change sides
 *  - lhss new left hand sides
 *  - rhss new right hand sides
 */
static
SCIP_DECL_NLPICHGCONSSIDES( nlpiChgConsSidesXyz )
{
   SCIPerrorMessage("method of xyz nonlinear solver is not implemented\n");
   SCIPABORT();

   return SCIP_OKAY;  /*lint !e527*/
}  /*lint !e715*/
开发者ID:henryem,项目名称:blinkdb-scheduling,代码行数:18,代码来源:nlpi_xyz.c

示例2: SCIP_DECL_RELAXINIT

static
SCIP_DECL_RELAXINIT(relaxInitXyz)
{  /*lint --e{715}*/
   SCIPerrorMessage("method of xyz relaxator not implemented yet\n");
   SCIPABORT(); /*lint --e{527}*/

   return SCIP_OKAY;
}
开发者ID:AndreasBrack,项目名称:WahlkreisSeminar,代码行数:8,代码来源:relax_xyz.c

示例3: SCIP_DECL_SEPAINIT

static
SCIP_DECL_SEPAINIT(sepaInitXyz)
{  /*lint --e{715}*/
   SCIPerrorMessage("method of xyz separator not implemented yet\n");
   SCIPABORT(); /*lint --e{527}*/

   return SCIP_OKAY;
}
开发者ID:bubuker,项目名称:keggle_santa,代码行数:8,代码来源:sepa_xyz.c

示例4: SCIP_DECL_DISPINIT

static
SCIP_DECL_DISPINIT(dispInitXyz)
{  /*lint --e{715}*/
   SCIPerrorMessage("method of xyz display column not implemented yet\n");
   SCIPABORT(); /*lint --e{527}*/

   return SCIP_OKAY;
}
开发者ID:gorhan,项目名称:LFOS,代码行数:8,代码来源:disp_xyz.c

示例5: SCIPsetModifiedDefaultSettingsIpopt

/** sets modified default settings that are used when setting up an Ipopt problem
 *
 * Do not forget to add a newline after the last option in optionsstring.
 */
void SCIPsetModifiedDefaultSettingsIpopt(
   SCIP_NLPI*            nlpi,               /**< Ipopt NLP interface */
   const char*           optionsstring       /**< string with options as in Ipopt options file */
   )
{
   SCIPerrorMessage("Ipopt not available!\n");
   SCIPABORT();
}  /*lint !e715*/
开发者ID:AndreasBrack,项目名称:WahlkreisSeminar,代码行数:12,代码来源:nlpi_ipopt_dummy.c

示例6: SCIP_DECL_COMPRINIT

static
SCIP_DECL_COMPRINIT(comprInitXyz)
{  /*lint --e{715}*/
   SCIPerrorMessage("method of xyz tree compression not implemented yet\n");
   SCIPABORT(); /*lint --e{527}*/

   return SCIP_OKAY;
}
开发者ID:bubuker,项目名称:keggle_santa,代码行数:8,代码来源:compr_xyz.c

示例7: SCIP_DECL_BRANCHINITSOL

static
SCIP_DECL_BRANCHINITSOL(branchInitsolMyfullstrong)
{  /*lint --e{715}*/
   SCIPerrorMessage("method of myfullstrong branching rule not implemented yet\n");
   SCIPABORT(); /*lint --e{527}*/

   return SCIP_OKAY;
}
开发者ID:k-kimura1224,项目名称:MAIC,代码行数:8,代码来源:branch_myfullstrong.c

示例8: SCIP_DECL_NLPIGETSOLSTAT

/** gives solution status
 * 
 * input:
 *  - nlpi datastructure for solver interface
 *  - problem datastructure for problem instance
 * 
 * return: Solution Status
 */
static
SCIP_DECL_NLPIGETSOLSTAT( nlpiGetSolstatXyz )
{
   SCIPerrorMessage("method of xyz nonlinear solver is not implemented\n");
   SCIPABORT();

   return SCIP_NLPSOLSTAT_UNKNOWN;  /*lint !e527*/
}  /*lint !e715*/
开发者ID:henryem,项目名称:blinkdb-scheduling,代码行数:16,代码来源:nlpi_xyz.c

示例9: SCIP_DECL_NLPIGETTERMSTAT

/** gives termination reason
 * 
 * input:
 *  - nlpi datastructure for solver interface
 *  - problem datastructure for problem instance
 * 
 * return: Termination Status
 */
static
SCIP_DECL_NLPIGETTERMSTAT( nlpiGetTermstatXyz )
{
   SCIPerrorMessage("method of xyz nonlinear solver is not implemented\n");
   SCIPABORT();

   return SCIP_NLPTERMSTAT_OTHER;  /*lint !e527*/
}  /*lint !e715*/
开发者ID:henryem,项目名称:blinkdb-scheduling,代码行数:16,代码来源:nlpi_xyz.c

示例10: SCIP_DECL_NLPICHGOBJCONSTANT

/** change the constant offset in the objective
 *
 * input:
 *  - nlpi datastructure for solver interface
 *  - problem datastructure for problem instance
 *  - objconstant new value for objective constant
 */
static
SCIP_DECL_NLPICHGOBJCONSTANT( nlpiChgObjConstantXyz )
{
   SCIPerrorMessage("method of xyz nonlinear solver is not implemented\n");
   SCIPABORT();

   return SCIP_OKAY;  /*lint !e527*/
}  /*lint !e715*/
开发者ID:henryem,项目名称:blinkdb-scheduling,代码行数:15,代码来源:nlpi_xyz.c

示例11: SCIP_DECL_NLPISETINITIALGUESS

/** sets initial guess for primal variables
 *
 * input:
 *  - nlpi datastructure for solver interface
 *  - problem datastructure for problem instance
 *  - primalvalues initial primal values for variables, or NULL to clear previous values
 *  - consdualvalues initial dual values for constraints, or NULL to clear previous values
 *  - varlbdualvalues  initial dual values for variable lower bounds, or NULL to clear previous values
 *  - varubdualvalues  initial dual values for variable upper bounds, or NULL to clear previous values
 */
static
SCIP_DECL_NLPISETINITIALGUESS( nlpiSetInitialGuessXyz )
{
   SCIPerrorMessage("method of xyz nonlinear solver is not implemented\n");
   SCIPABORT();

   return SCIP_OKAY;  /*lint !e527*/
}  /*lint !e715*/
开发者ID:henryem,项目名称:blinkdb-scheduling,代码行数:18,代码来源:nlpi_xyz.c

示例12: SCIP_DECL_NLPICHGNONLINCOEF

/** change one coefficient in the nonlinear part
 * 
 * input:
 *  - nlpi datastructure for solver interface
 *  - problem datastructure for problem instance
 *  - idxcons index of constraint or -1 for objective
 *  - idxparam index of parameter
 *  - value new value for nonlinear parameter
 * 
 * return: Error if parameter does not exist
 */
static
SCIP_DECL_NLPICHGNONLINCOEF( nlpiChgNonlinCoefXyz )
{
   SCIPerrorMessage("method of xyz nonlinear solver is not implemented\n");
   SCIPABORT();

   return SCIP_OKAY;  /*lint !e527*/
}  /*lint !e715*/
开发者ID:henryem,项目名称:blinkdb-scheduling,代码行数:19,代码来源:nlpi_xyz.c

示例13: SCIP_DECL_NLPICHGQUADCOEFS

/** changes (or adds) coefficients in the quadratic part of a constraint or objective
 * 
 * input:
 *  - nlpi datastructure for solver interface
 *  - problem datastructure for problem instance
 *  - idx index of constraint or -1 for objective
 *  - nentries number of entries in quadratic matrix to change
 *  - rows row indices of entries in quadratic matrix where values should be changed
 *  - cols column indices of entries in quadratic matrix where values should be changed
 *  - values new values for entries in quadratic matrix
 */
static
SCIP_DECL_NLPICHGQUADCOEFS( nlpiChgQuadraticCoefsXyz )
{
   SCIPerrorMessage("method of xyz nonlinear solver is not implemented\n");
   SCIPABORT();

   return SCIP_OKAY;  /*lint !e527*/
}  /*lint !e715*/
开发者ID:henryem,项目名称:blinkdb-scheduling,代码行数:19,代码来源:nlpi_xyz.c

示例14: SCIP_DECL_NLPIDELCONSSET

/** delete a set of constraints
 * 
 * input:
 *  - nlpi datastructure for solver interface
 *  - problem datastructure for problem instance
 *  - dstats deletion status of rows; 1 if row should be deleted, 0 if not
 * 
 * output:
 *  - dstats new position of row, -1 if row was deleted
 */
static
SCIP_DECL_NLPIDELCONSSET( nlpiDelConstraintSetXyz )
{
   SCIPerrorMessage("method of xyz nonlinear solver is not implemented\n");
   SCIPABORT();

   return SCIP_OKAY;  /*lint !e527*/
}  /*lint !e715*/
开发者ID:henryem,项目名称:blinkdb-scheduling,代码行数:18,代码来源:nlpi_xyz.c

示例15: SCIP_DECL_CONSPARSE

static
SCIP_DECL_CONSPARSE(consParseXyz)
{  /*lint --e{715}*/
   SCIPerrorMessage("method of xyz constraint handler not implemented yet\n");
   SCIPABORT(); /*lint --e{527}*/

   return SCIP_OKAY;
}
开发者ID:bubuker,项目名称:keggle_santa,代码行数:8,代码来源:cons_xyz.c


注:本文中的SCIPerrorMessage函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。