All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
reader_ccg.c
Go to the documentation of this file.
20 * Write a weighted column/variable graph, i.e., the nodes correspond to the columns (variables) of
21 * the constraint matrix. Two nodes are adjacent if the corresponding columns/variables have appear
31 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
127 /** check whether there is enough capacity for one additional edge in the given adjacency list */
148 /** transforms given variables, scalars, and constant to the corresponding active variables, scalars, and constant */
153 SCIP_Real* scalars, /**< scalars a_1, ..., a_n inrc/scip/reader_graph.c linear sum a_1*x_1 + ... + a_n*x_n + c */
170 SCIP_CALL( SCIPgetProbvarLinearSum(scip, vars, scalars, nvars, *nvars, constant, &requiredsize, TRUE) );
177 SCIP_CALL( SCIPgetProbvarLinearSum(scip, vars, scalars, nvars, requiredsize, constant, &requiredsize, TRUE) );
313 SCIP_CALL( getActiveVariables(scip, activevars, activevals, &nactivevars, &activeconstant, transformed) );
367 SCIP_CALL( SCIPincludeReaderBasic(scip, &reader, READER_NAME, READER_DESC, READER_EXTENSION, NULL) );
385 SCIP_VAR** vars, /**< array with active variables ordered binary, integer, implicit, continuous */
418 /* in case the transformed is written only constraint are posted which are enabled in the current node */
458 SCIP_CALL( handleLinearCons(scip, SCIPgetVarsLogicor(scip, cons), NULL, SCIPgetNVarsLogicor(scip, cons), transformed, &G) );
499 SCIPwarningMessage(scip, "constraint handler <%s> cannot print requested format\n", conshdlrname );
|