Class: Logica::Predicates::Contradiction
- Inherits:
-
Base
- Object
- Base
- Logica::Predicates::Contradiction
show all
- Defined in:
- lib/logica/predicates/contradiction.rb
Constant Summary
Constants inherited
from Base
Base::ACCEPTOR_TYPE_ID
Instance Method Summary
collapse
Methods inherited from Base
#and, #and_not, #arity, #disjoint_with?, #exhaustive_with?, #generalization_of?, #generalization_of_negation_of?, #iff, #implies, #method_missing, #name_and_attributes, #or, #or_not, #partially_applied_with, #portion_satisfied_by, predicate_factory, #remainder_unsatisfied_by, #respond_to_missing?, #to_method, #to_proc, #unsatisfied_by?, #xor
#==, #hash, #state
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class Logica::Predicates::Base
Instance Method Details
#generalization_of_other?(other) ⇒ Boolean
16
17
18
|
# File 'lib/logica/predicates/contradiction.rb', line 16
def generalization_of_other?(other)
false
end
|
#negated ⇒ Object
8
9
10
|
# File 'lib/logica/predicates/contradiction.rb', line 8
def negated
predicate_factory.tautology
end
|
#satisfied_by?(*arguments) ⇒ Boolean
4
5
6
|
# File 'lib/logica/predicates/contradiction.rb', line 4
def satisfied_by?(*arguments)
false
end
|
#specialization_of?(other) ⇒ Boolean
12
13
14
|
# File 'lib/logica/predicates/contradiction.rb', line 12
def specialization_of?(other)
true
end
|
#to_s ⇒ Object
20
21
22
|
# File 'lib/logica/predicates/contradiction.rb', line 20
def to_s
'FALSE |n|'
end
|