#include <MCF3_tm.hpp>
Inheritance diagram for MCF3_tm:
Public Member Functions | |
MCF3_tm () | |
virtual | ~MCF3_tm () |
virtual void | pack_module_data (BCP_buffer &buf, BCP_process_t ptype) |
Pack the initial information (info that the user wants to send over) for the process specified by the last argument. | |
virtual void | pack_var_algo (const BCP_var_algo *var, BCP_buffer &buf) |
virtual BCP_var_algo * | unpack_var_algo (BCP_buffer &buf) |
virtual void | pack_user_data (const BCP_user_data *ud, BCP_buffer &buf) |
virtual BCP_user_data * | unpack_user_data (BCP_buffer &buf) |
virtual void | initialize_core (BCP_vec< BCP_var_core * > &vars, BCP_vec< BCP_cut_core * > &cuts, BCP_lp_relax *&matrix) |
Create the core of the problem by filling out the last three arguments. | |
virtual void | create_root (BCP_vec< BCP_var * > &added_vars, BCP_vec< BCP_cut * > &added_cuts, BCP_user_data *&user_data, BCP_pricing_status &pricing_status) |
virtual void | display_feasible_solution (const BCP_solution *sol) |
Display a feasible solution. | |
Public Attributes | |
BCP_parameter_set< MCF3_par > | par |
MCF3_data | data |
Definition at line 11 of file MCF3_tm.hpp.
MCF3_tm::MCF3_tm | ( | ) | [inline] |
Definition at line 18 of file MCF3_tm.hpp.
virtual MCF3_tm::~MCF3_tm | ( | ) | [inline, virtual] |
Definition at line 19 of file MCF3_tm.hpp.
virtual void MCF3_tm::pack_module_data | ( | BCP_buffer & | buf, | |
BCP_process_t | ptype | |||
) | [virtual] |
Pack the initial information (info that the user wants to send over) for the process specified by the last argument.
The information packed here will be unpacked in the unpack_module_data()
method of the user defined class in the appropriate process.
Default: empty method.
Reimplemented from BCP_tm_user.
virtual void MCF3_tm::pack_var_algo | ( | const BCP_var_algo * | var, | |
BCP_buffer & | buf | |||
) | [inline, virtual] |
virtual BCP_var_algo* MCF3_tm::unpack_var_algo | ( | BCP_buffer & | buf | ) | [inline, virtual] |
virtual void MCF3_tm::pack_user_data | ( | const BCP_user_data * | ud, | |
BCP_buffer & | buf | |||
) | [inline, virtual] |
virtual BCP_user_data* MCF3_tm::unpack_user_data | ( | BCP_buffer & | buf | ) | [inline, virtual] |
virtual void MCF3_tm::initialize_core | ( | BCP_vec< BCP_var_core * > & | vars, | |
BCP_vec< BCP_cut_core * > & | cuts, | |||
BCP_lp_relax *& | matrix | |||
) | [virtual] |
Create the core of the problem by filling out the last three arguments.
These variables/cuts will always stay in the LP relaxation and the corresponding matrix is described by the specified matrix. If there is no core variable or cut then the returned pointer for to the matrix should be a null pointer.
Default: empty method, meaning that there are no variables/cuts in the core and this the core matrix is empty (0 pointer) as well.
Reimplemented from BCP_tm_user.
virtual void MCF3_tm::create_root | ( | BCP_vec< BCP_var * > & | added_vars, | |
BCP_vec< BCP_cut * > & | added_cuts, | |||
BCP_user_data *& | user_data, | |||
BCP_pricing_status & | pricing_status | |||
) | [virtual] |
virtual void MCF3_tm::display_feasible_solution | ( | const BCP_solution * | sol | ) | [virtual] |
Definition at line 14 of file MCF3_tm.hpp.
Definition at line 15 of file MCF3_tm.hpp.