COIN-OR::LEMON - Graph Library

Changeset 542:fc6c7aab4b8d in lemon-1.2 for test/mip_test.cc


Ignore:
Timestamp:
03/04/09 14:43:05 (15 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
541:89e29e22d479 (diff), 538:ba124394367a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/mip_test.cc

    r538 r542  
    107107}
    108108
     109template<class MIP>
     110void cloneTest()
     111{
     112 
     113  MIP* mip = new MIP();
     114  MIP* mipnew = mip->newSolver();
     115  MIP* mipclone = mip->cloneSolver();
     116  delete mip;
     117  delete mipnew;
     118  delete mipclone;
     119}
    109120
    110121int main()
     
    115126    GlpkMip mip1;
    116127    aTest(mip1);
     128    cloneTest<GlpkMip>();
    117129  }
    118130#endif
     
    130142#endif
    131143  }
     144  cloneTest<CplexMip>();
    132145#endif
    133146
Note: See TracChangeset for help on using the changeset viewer.