Exception: Solve::Errors::UnsortableSolutionError

Inherits:
SolveError
  • Object
show all
Defined in:
lib/solve/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(internal_exception, unsorted_solution) ⇒ UnsortableSolutionError

Returns a new instance of UnsortableSolutionError.



72
73
74
75
# File 'lib/solve/errors.rb', line 72

def initialize(internal_exception, unsorted_solution)
  @internal_exception = internal_exception
  @unsorted_solution  = unsorted_solution
end

Instance Attribute Details

#internal_exceptionObject (readonly)

Returns the value of attribute internal_exception.



69
70
71
# File 'lib/solve/errors.rb', line 69

def internal_exception
  @internal_exception
end

#unsorted_solutionObject (readonly)

Returns the value of attribute unsorted_solution.



70
71
72
# File 'lib/solve/errors.rb', line 70

def unsorted_solution
  @unsorted_solution
end

Instance Method Details

#to_sObject



77
78
79
# File 'lib/solve/errors.rb', line 77

def to_s
  "The solution contains a cycle and cannot be topologically sorted. See #unsorted_solution on this exception for the unsorted solution"
end