get_lambda, get_ptr_lambdaReturns the Lamdba vectors (Lagrangian optimization). int get_lambda(lprec *lp, REAL *lambda); int get_ptr_lambda(lprec *lp, REAL **ptr_lambda); Return Value get_lambda, get_ptr_lambda returns TRUE (1) if the operation was
successful. A return value of FALSE (0) indicates an error. Parameters lp Pointer to previously created lp model. See return value of make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS lambda An array that will contain the values of the Lamdba vectors. ptr_lambda The address of a pointer that will point to an array that will contain the values of the Lamdba vectors. Remarks The get_lambda, get_ptr_lambda functions retrieve the Lamdba vectors. Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, is_feasible, get_objective, get_variables, get_ptr_variables, get_primal_solution, get_ptr_primal_solution, get_work_solution, get_ptr_work_solution, get_sensitivity_rhs, get_ptr_sensitivity_rhs, get_reduced_costs, get_ptr_reduced_costs, get_sensitivity_obj, get_ptr_sensitivity_obj, get_sensitivity_objex, get_ptr_sensitivity_objex, get_constraints, get_ptr_constraints, lag_solve |