/home/coin/SVN-release/CoinAll-1.1.0/SYMPHONY/Applications/CNRP/include/cnrp_lp_params.h

Go to the documentation of this file.
00001 /*===========================================================================*/
00002 /*                                                                           */
00003 /* This file is part of a demonstration application for use with the         */
00004 /* SYMPHONY Branch, Cut, and Price Library. This application is a solver for */
00005 /* Capacitated Network Routing Problems.                                     */
00006 /*                                                                           */
00007 /* (c) Copyright 2000-2008 Ted Ralphs. All Rights Reserved.                  */
00008 /*                                                                           */
00009 /* This application was developed by Ted Ralphs (tkralphs@lehigh.edu)        */
00010 /*                                                                           */
00011 /* This software is licensed under the Common Public License. Please see     */
00012 /* accompanying file for terms.                                              */
00013 /*                                                                           */
00014 /*===========================================================================*/
00015 
00016 #ifndef _CNRP_LP_PARAMS_H
00017 #define _CNRP_LP_PARAMS_H
00018 
00019 /*---------------------------------------------------------------------------*\
00020  * Here we store the specific data needed to process each node of the tree
00021 \*---------------------------------------------------------------------------*/
00022 
00023 typedef struct CNRP_LP_PARAMS{
00024    int    verbosity;
00025    char   prob_type;
00026    int    branching_rule;
00027    int    detect_tailoff; /* 1  indicates tailing-off detection is desirable */
00028    float  child_compar_obj_tol;
00029    int    branch_on_cuts;
00030    int    strong_branching_cand_num_max;
00031    int    strong_branching_cand_num_min;
00032    int    strong_branching_red_ratio;
00033    double gamma; /*Determines the fixed cost*/
00034    double tau;   /*Determines the variable cost*/
00035    double rho;
00036 }cnrp_lp_params;
00037 
00038 #endif

Generated on Sun Nov 14 14:06:41 2010 for Coin-All by  doxygen 1.4.7