Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members

CglCutGenerator.cpp

00001 // Copyright (C) 2000, International Business Machines
00002 // Corporation and others.  All Rights Reserved.
00003 #if defined(_MSC_VER)
00004 // Turn off compiler warning about long names
00005 #  pragma warning(disable:4786)
00006 #endif
00007 //#include <stdlib.h>
00008 #include <assert.h>
00009 //#include <float.h>
00010 //#include <iostream>
00011 
00012 #include "CglCutGenerator.hpp"
00013  
00014 
00015 //-------------------------------------------------------------------
00016 // Default Constructor 
00017 //-------------------------------------------------------------------
00018 CglCutGenerator::CglCutGenerator ()
00019 {
00020   // nothing to do here
00021 }
00022 
00023 //-------------------------------------------------------------------
00024 // Copy constructor 
00025 //-------------------------------------------------------------------
00026 CglCutGenerator::CglCutGenerator (
00027                   const CglCutGenerator & source)         
00028 {  
00029   // nothing to do here
00030 }
00031 
00032 
00033 //-------------------------------------------------------------------
00034 // Destructor 
00035 //-------------------------------------------------------------------
00036 CglCutGenerator::~CglCutGenerator ()
00037 {
00038   // nothing to do here
00039 }
00040 
00041 //----------------------------------------------------------------
00042 // Assignment operator 
00043 //-------------------------------------------------------------------
00044 CglCutGenerator &
00045 CglCutGenerator::operator=(
00046                    const CglCutGenerator& rhs)
00047 {
00048   if (this != &rhs) {
00049     // nothing to do here
00050   }
00051   return *this;
00052 }
00053 
00054 
00055 
00056 #ifdef NDEBUG
00057 #undef NDEBUG
00058 #endif
00059 
00060 #if 0
00061 //--------------------------------------------------------------------------
00062 // test EKKsolution methods.
00063 //--------------------------------------------------------------------------
00064 void
00065 CglCutGenerator::unitTest()
00066 {
00067 }
00068 #endif

Generated on Wed Dec 3 14:34:53 2003 for Cgl by doxygen 1.3.5