Package net.sf.tweety.logics.fol.writer
Class StandardFolWriter
- java.lang.Object
-
- net.sf.tweety.logics.fol.writer.StandardFolWriter
-
-
Constructor Summary
Constructors Constructor Description StandardFolWriter()
Creates new writerStandardFolWriter(java.io.Writer writer)
Creates new writer
-
Method Summary
Modifier and Type Method Description void
close()
Closes the Writer.void
printBase(FolBeliefSet b)
Prints formatted representation of a knowledge base.void
printEquivalence(FolFormula a, FolFormula b)
Prints an Equivalence.void
printQuery(FolFormula query)
Prints formatted representation of a query.
-
-
-
Method Detail
-
printQuery
public void printQuery(FolFormula query) throws java.io.IOException
Description copied from interface:FolWriter
Prints formatted representation of a query.- Specified by:
printQuery
in interfaceFolWriter
- Parameters:
query
- the formula to be queried- Throws:
java.io.IOException
- if an IO issue occurs.
-
printEquivalence
public void printEquivalence(FolFormula a, FolFormula b) throws java.io.IOException
Description copied from interface:FolWriter
Prints an Equivalence.- Specified by:
printEquivalence
in interfaceFolWriter
- Parameters:
a
- formula on one side of the equationb
- formula on the other side of the equation- Throws:
java.io.IOException
- if an IO issue occurs.
-
printBase
public void printBase(FolBeliefSet b) throws java.io.IOException
Description copied from interface:FolWriter
Prints formatted representation of a knowledge base.
-
-