Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

objbounds_hook.h

Go to the documentation of this file.
00001 // Search Node objbounds computation hook implementation -*- C++ -*-
00002 
00003 // Copyright (C) 2003 Hermann Schichl
00004 //
00005 // This file is part of the COCONUT API.  This library
00006 // is free software; you can redistribute it and/or modify it under the
00007 // terms of the Library GNU General Public License as published by the
00008 // Free Software Foundation; either version 2, or (at your option)
00009 // any later version.
00010 
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014 // Library GNU General Public License for more details.
00015 
00016 // As a special exception, you may use this file as part of a free software
00017 // library without restriction.  Specifically, if other files instantiate
00018 // templates or use macros or inline functions from this file, or you compile
00019 // this file and link it with other files to produce an executable, this
00020 // file does not by itself cause the resulting executable to be covered by
00021 // the Library GNU General Public License.  This exception does not however
00022 // invalidate any other reasons why the executable file might be covered by
00023 // the Library GNU General Public License.
00024 
00027 #ifndef _OBJBOUNDS_HOOK_H
00028 #define _OBJBOUNDS_HOOK_H
00029 
00030 #include <comp_hook.h>
00031 
00032 class objbounds_comp_hook : protected work_node_comp_hook
00033 {
00034 public:
00035   objbounds_comp_hook() : __work_node_comp_hook("objbounds"), __managed_cols();
00036 
00037   virtual ~objbounds_comp_hook() {}
00038 
00039   void operator()(const work_node& wn, dbt_row& dbr)
00040   {
00041     interval _h(0.);
00042     double _s;
00043     if((_s = wn.get_model()->ocoeff) != 0)
00044       _h = wn.node_ranges[wn.get_model()->objective->node_num]*_s;
00045     add_to_dbt_row(dbr, "obj lowbound", _h.inf());
00046     add_to_dbt_row(dbr, "obj upbound", _h.sup());
00047   }
00048 
00049   bool init_columns(vdbl::standard_table& stable)
00050   {
00051     bool ret = _init_column(stable, "obj lowbound", -INFINITY);
00052     ret = _init_column(stable, "obj upbound", INFINITY) || ret;
00053     return ret;
00054   }
00055 
00056   bool drop_columns(vdbl::standard_table& stable)
00057         { return _drop_columns(stable); }
00058 };
00059 
00060 #endif // _OBJBOUNDS_HOOK_H

Generated on Tue Nov 4 01:57:58 2003 for COCONUT API by doxygen1.2.18