Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/12/15 15:13:36 (9 years ago)
Author:
mkommend
Message:

#2027: Improved code formatting for terminators.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/TerminationCriteria/HeuristicLab.Termination/3.3/Terminator.cs

    r12414 r12436  
    5353      if (!TerminateParameter.ActualValue.Value) { // If terminate flag is already set, no need to check further termination criteria.
    5454        bool terminate = !CheckContinueCriterion();
    55         TerminateParameter.ActualValue = new BoolValue(terminate);
     55        TerminateParameter.ActualValue.Value = terminate;
    5656      }
    5757      return base.Apply();
Note: See TracChangeset for help on using the changeset viewer.