Class RclBeliefSet
java.lang.Object
org.tweetyproject.commons.BeliefSet<RelationalConditional,FolSignature>
org.tweetyproject.logics.rcl.syntax.RclBeliefSet
- All Implemented Interfaces:
Iterable<RelationalConditional>
,Collection<RelationalConditional>
,BeliefBase
This class models a belief set on relational conditional logic, i.e. a set of relational conditionals.
- Author:
- Matthias Thimm
-
Field Summary
Fields inherited from class org.tweetyproject.commons.BeliefSet
EQUALS_USES_SIGNATURE
-
Constructor Summary
ConstructorDescriptionCreates a new (empty) conditional belief set.RclBeliefSet
(Collection<? extends RelationalConditional> conditionals) Creates a new relational conditional belief set with the given collection of relational conditionals. -
Method Summary
Modifier and TypeMethodDescriptionReturns the signature of the language of this knowledge base.Methods inherited from class org.tweetyproject.commons.BeliefSet
add, add, addAll, clear, contains, containsAll, equals, getSignature, hashCode, isEmpty, iterator, remove, removeAll, retainAll, setSignature, size, toArray, toArray, toString, toString
Methods inherited from interface java.util.Collection
parallelStream, removeIf, spliterator, stream, toArray
-
Constructor Details
-
RclBeliefSet
public RclBeliefSet()Creates a new (empty) conditional belief set. -
RclBeliefSet
Creates a new relational conditional belief set with the given collection of relational conditionals.- Parameters:
conditionals
- a collection of relational conditionals.
-
-
Method Details
-
getMinimalSignature
Description copied from interface:BeliefBase
Returns the signature of the language of this knowledge base.- Returns:
- the signature of the language of this knowledge base.
-