From 72d458d97a88426a32f1cc97aa7e0f962306c953 Mon Sep 17 00:00:00 2001 From: David Socha Date: Sun, 7 Dec 2014 22:10:12 -0600 Subject: [PATCH] Emergency commit to add semicolon! --- .../Implementation/Extensions/DataModelEqualValues.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RaikesSimplexService/Implementation/Extensions/DataModelEqualValues.cs b/RaikesSimplexService/Implementation/Extensions/DataModelEqualValues.cs index 68dce07..1ba087c 100644 --- a/RaikesSimplexService/Implementation/Extensions/DataModelEqualValues.cs +++ b/RaikesSimplexService/Implementation/Extensions/DataModelEqualValues.cs @@ -43,7 +43,7 @@ public static bool EqualValues(this Solution self, Solution other) bool sameOptimal = self.OptimalValue.NearlyEqual(other.OptimalValue); bool sameDecisions = self.Decisions.EqualValues(other.Decisions); bool sameQuality = self.Quality == other.Quality; - bool sameAltSols = self.AlternateSolutionsExist == other.AlternateSolutionsExist + bool sameAltSols = self.AlternateSolutionsExist == other.AlternateSolutionsExist; return sameDecisions && sameQuality && sameOptimal && sameAltSols; }