Exemple #1
0
 public bool Equals(INodeSolution other)
 {
     return
         (BaseDelta == other.BaseDelta &&
          Enumerable.SequenceEqual(
              TimeDeltas ?? Enumerable.Empty <TimeDeltaEntry>(),
              other.TimeDeltas ?? Enumerable.Empty <TimeDeltaEntry>(),
              TimeDeltaEntryComparer.Instance
              ));
 }
Exemple #2
0
 public CorrelatorRunResult(INodeSolution solution, HashSet <string> correlatedConnectionIds)
 {
     this.solution = solution;
     this.correlatedConnectionIds = correlatedConnectionIds;
 }