Changeset 4068 for trunk/sources/HeuristicLab.Core/3.3/Constraints
- Timestamp:
- 07/22/10 00:44:01 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Core/3.3/Constraints
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Constraints/ComparisonConstraint.cs
r3630 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 25 -
trunk/sources/HeuristicLab.Core/3.3/Constraints/Constraint.cs
r3613 r4068 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 25 using HeuristicLab.Common; 27 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; -
trunk/sources/HeuristicLab.Core/3.3/Constraints/ConstraintOperation.cs
r3630 r4068 20 20 #endregion 21 21 22 using System.Collections.Generic;23 22 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 24 23 namespace HeuristicLab.Core { … … 61 60 } 62 61 public static bool operator ==(ConstraintOperation co1, ConstraintOperation co2) { 63 if (object.ReferenceEquals(co1,co2))62 if (object.ReferenceEquals(co1, co2)) 64 63 return true; 65 66 if ((object)co1 == null || (object)co2 == null)64 65 if ((object)co1 == null || (object)co2 == null) 67 66 return false; 68 67 -
trunk/sources/HeuristicLab.Core/3.3/Constraints/EqualityConstraint.cs
r3605 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HeuristicLab.Common;28 25 29 26 namespace HeuristicLab.Core { -
trunk/sources/HeuristicLab.Core/3.3/Constraints/IConstraint.cs
r3613 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 24 27 25 namespace HeuristicLab.Core { -
trunk/sources/HeuristicLab.Core/3.3/Constraints/TypeCompatibilityConstraint.cs
r3605 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;25 using System.Text;26 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 25
Note: See TracChangeset
for help on using the changeset viewer.