Skip to content

Commit

Permalink
weniger Klammern bei Wahrheitstafel-Formelnausgabe
Browse files Browse the repository at this point in the history
- close #223
  • Loading branch information
jvoigtlaender authored Nov 19, 2024
1 parent ae5b2b6 commit 5000317
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LogicTasks/Util.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Util
import Test.QuickCheck (Gen)
import Formula.Types (Cnf, genCnf, genDnf, Dnf)
import Config (NormalFormConfig (..), BaseConfig(..), FormulaInst (..), FormulaConfig (..))
import Trees.Print (display)
import Trees.Print (simplestDisplay)
import Tasks.SynTree.Config (SynTreeConfig(minAmountOfUniqueAtoms, availableAtoms))
import Formula.Util (isEmptyCnf, hasEmptyClause, isEmptyDnf, hasEmptyCon)

Expand All @@ -28,7 +28,7 @@ genDnf' (NormalFormConfig{baseConf = BaseConfig{..}, ..})
displayFormula :: FormulaInst -> String
displayFormula (InstCnf c) = show c
displayFormula (InstDnf d) = show d
displayFormula (InstArbitrary t) = display t
displayFormula (InstArbitrary t) = simplestDisplay t

usesAllAtoms :: FormulaConfig -> Bool
usesAllAtoms (FormulaArbitrary syntaxTreeConfig)
Expand Down

0 comments on commit 5000317

Please sign in to comment.