class BfsBruteForce::NoSolution

Exception thrown by {Solver#solve}

Public Class Methods

new(num_of_solutions_tried) click to toggle source

@param num_of_solutions_tried [Fixnum] number of solutions previously tried

Calls superclass method
# File lib/bfs_brute_force.rb, line 9
def initialize(num_of_solutions_tried)
  super("No solution in #{num_of_solutions_tried} tries. There are no more states to analyze")
end