Class: ADSL::FOL::IfThenElse
- Defined in:
- lib/adsl/fol/first_order_logic.rb
Instance Method Summary collapse
-
#initialize(iif, tthen, eelse) ⇒ IfThenElse
constructor
A new instance of IfThenElse.
- #resolve_spass ⇒ Object
Constructor Details
#initialize(iif, tthen, eelse) ⇒ IfThenElse
Returns a new instance of IfThenElse.
209 210 211 212 213 |
# File 'lib/adsl/fol/first_order_logic.rb', line 209 def initialize(iif, tthen, eelse) @iif = iif @tthen = tthen @eelse = eelse end |