Skip to content

Commit f84511c

Browse files
committed
fixed issue of "bottomup" in match statement based on command line. All over the place.
1 parent 6dd46df commit f84511c

18 files changed

Lines changed: 18 additions & 18 deletions

dynamicProgramming/src/main/scala/org/combinators/archive/unenhancedModels/boilerplate/fibonacci/FibonacciMainJava.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ object FibonacciMainDirectToDiskMain extends IOApp {
8585
args(0).toLowerCase() match {
8686
case "topdown" => topDown
8787
case "topdownwithmemo" => topDownWithMemo
88-
case "bottomUp" => bottomUp
88+
case "bottomup" => bottomUp
8989
case _ => ???
9090
}
9191
} else {

dynamicProgramming/src/main/scala/org/combinators/models/boilerplate/integer/BellNumberMainJava.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ object BellNumberDirectToDiskMain extends IOApp {
4242
args(0).toLowerCase() match {
4343
case "topdown" => topDown
4444
case "topdownwithmemo" => topDownWithMemo
45-
case "bottomUp" => bottomUp
45+
case "bottomup" => bottomUp
4646
case _ => ???
4747
}
4848
} else {

dynamicProgramming/src/main/scala/org/combinators/models/boilerplate/integer/DiceThrowMainJava.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ object DiceThrowDirectToDiskMain extends IOApp {
4040
args(0).toLowerCase() match {
4141
case "topdown" => topDown
4242
case "topdownwithmemo" => topDownWithMemo
43-
case "bottomUp" => bottomUp
43+
case "bottomup" => bottomUp
4444
case _ => ???
4545
}
4646
} else {

dynamicProgramming/src/main/scala/org/combinators/models/boilerplate/integer/FibonacciMainJava.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ object FibonacciEnhancedMainToDiskMain extends IOApp {
4444
args(0).toLowerCase() match {
4545
case "topdown" => topDown
4646
case "topdownwithmemo" => topDownWithMemo
47-
case "bottomUp" => bottomUp
47+
case "bottomup" => bottomUp
4848
case _ => ???
4949
}
5050
} else {

dynamicProgramming/src/main/scala/org/combinators/models/boilerplate/integer/FibonacciMainScala.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ object FibonacciEnhancedMainToDiskMainScala extends IOApp {
4343
args(0).toLowerCase() match {
4444
case "topdown" => topDown
4545
case "topdownwithmemo" => topDownWithMemo
46-
case "bottomUp" => bottomUp
46+
case "bottomup" => bottomUp
4747
case _ => ???
4848
}
4949
} else {

dynamicProgramming/src/main/scala/org/combinators/models/boilerplate/integer/PerfectSquaresMainJava.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ object PerfectSquareMainDirectToDiskMain extends IOApp {
4444
args(0).toLowerCase() match {
4545
case "topdown" => topDown
4646
case "topdownwithmemo" => topDownWithMemo
47-
case "bottomUp" => bottomUp
47+
case "bottomup" => bottomUp
4848
case _ => ???
4949
}
5050
} else {

dynamicProgramming/src/main/scala/org/combinators/models/boilerplate/oneSequence/LongestIncreasingSubsequenceMainJava.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ object LongestIncreasingSubsequenceDirectToDiskMain extends IOApp {
4444
args(0).toLowerCase() match {
4545
case "topdown" => topDown
4646
case "topdownwithmemo" => topDownWithMemo
47-
case "bottomUp" => bottomUp
47+
case "bottomup" => bottomUp
4848
case _ => ???
4949
}
5050
} else {

dynamicProgramming/src/main/scala/org/combinators/models/boilerplate/oneSequence/LongestValidParenthesesMainJava.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ object LongestValidParenthesesDirectToDiskMain extends IOApp {
4444
args(0).toLowerCase() match {
4545
case "topdown" => topDown
4646
case "topdownwithmemo" => topDownWithMemo
47-
case "bottomUp" => bottomUp
47+
case "bottomup" => bottomUp
4848
case _ => ???
4949
}
5050
} else {

dynamicProgramming/src/main/scala/org/combinators/models/boilerplate/oneSequence/MaximalIndependentSetPathMainJava.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ object MaximalIndependentSetPathDirectToDiskMain extends IOApp {
4242
args(0).toLowerCase() match {
4343
case "topdown" => topDown
4444
case "topdownwithmemo" => topDownWithMemo
45-
case "bottomUp" => bottomUp
45+
case "bottomup" => bottomUp
4646
case _ => ???
4747
}
4848
} else {

dynamicProgramming/src/main/scala/org/combinators/models/boilerplate/oneSequence/MinCostClimbingStairMain.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ object MinCostClimbingStairToDiskMain extends IOApp {
3535
args(0).toLowerCase() match {
3636
case "topdown" => topDown
3737
case "topdownwithmemo" => topDownWithMemo
38-
case "bottomUp" => bottomUp
38+
case "bottomup" => bottomUp
3939
case _ => ???
4040
}
4141
} else {

0 commit comments

Comments
 (0)