Skip to content

Commit

Permalink
Remove left-over debug trace
Browse files Browse the repository at this point in the history
  • Loading branch information
mrBliss committed Mar 23, 2020
1 parent adbdf42 commit e44427b
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -46,8 +46,6 @@ import qualified Control.State.Transition.Extended as STS
import Control.State.Transition.Trace (Trace)
import qualified Control.State.Transition.Trace as Trace

import qualified Debug.Trace as D

-- | State transition systems for which traces can be generated, given a trace
-- generation environment.
--
Expand Down Expand Up @@ -102,7 +100,7 @@ traceFrom traceEnv maxTraceLength traceGenEnv env st0 = do
sig <- sigGen @sts @traceGenEnv traceGenEnv env sti
case interpretSTS @sts @traceGenEnv traceEnv (STS.applySTS @sts (TRC(env, sti, sig))) of
Left _predicateFailures ->
loop (d - 1) sti (D.trace ("STS PredicateFailure - " <> show _predicateFailures) stSigs)
loop (d - 1) sti stSigs
Right sti' ->
loop (d - 1) sti' ((sti', sig): stSigs)

Expand Down

0 comments on commit e44427b

Please sign in to comment.