Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/05/10 03:17:25 (14 years ago)
Author:
swagner
Message:

Continued work on algorithm batch processing (#947).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealing.cs

    r3262 r3265  
    183183
    184184    public override void Prepare() {
    185       base.Prepare();
    186       if (Engine != null) {
    187         if (Problem == null || MoveGenerator == null || MoveMaker == null || MoveEvaluator == null)
    188           Engine.Prepare(null);
    189       }
     185      if (Problem != null && MoveGenerator != null && MoveMaker != null && MoveEvaluator != null)
     186        base.Prepare();
    190187    }
    191188
Note: See TracChangeset for help on using the changeset viewer.