Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/23/10 06:50:50 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on algorithms
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters/3.3/SubScopesLookupParameter.cs

    r2818 r2852  
    4545        if (var != null) {
    4646          value = var.Value as T;
    47           if (value == null)
     47          if ((var.Value != null) && (value == null))
    4848            throw new InvalidOperationException(
    4949              string.Format("Type mismatch. Variable \"{0}\" does not contain a \"{1}\".",
Note: See TracChangeset for help on using the changeset viewer.