← Back

Modules

Leios

  • Abstract
  • Base
  • Blocks
  • Config
  • Defaults
  • FFD
  • Foreign.BaseTypes
  • Foreign.HsTypes
  • Foreign.Types
  • Foreign.Util
  • KeyRegistration
  • Network
  • Prelude
  • Protocol
  • Short
  • Short.Decidable
  • Short.Trace.Verifier
  • Short.Trace.Verifier.Test
  • Simplified
  • Simplified.Deterministic
  • SpecStructure
  • Traces
  • Voting
  • VRF
123456789101112131415161718
{-# OPTIONS --safe --without-K #-}
module Tactic.Defaults where
 
open import Meta.Prelude
 
open import Class.MonadTC
open import Reflection.Debug
 
-- There should only ever be one instance, with this being convenient
-- to tweak all at once
instance
defaultTCOptionsI = record
{ debug = record defaultDebugOptions
{ prefix = '┃' -- ┃⎸
; filter = Filter.⊥
}
; fuel = ("reduceDec/constrs" , 5) ∷ []
}