Minor code update + old docs deleting

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@881 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jboisson 2008-01-15 16:06:01 +00:00
commit 83d5ff0cd9
286 changed files with 5 additions and 27155 deletions

View file

@ -93,6 +93,11 @@ class moTSMoveLoopExpl:public moMoveLoopExpl < M >
Fitness fitness, best_move_fitness;
bool move_is_tabu, aspiration_criterion_is_verified, selection_update_is_ok, has_next_move;
if( _old_solution.invalid() )
{
throw std::runtime_error("[moTSMoveLoopExpl.h]: The current solution has not been evaluated.");
}
//At the begining, the new solution is equivalent to the old one.
_new_solution=(EOT)_old_solution;