← Back

Modules

CategoricalCrypto

  • CategoricalCrypto
  • Channel.Category
  • Channel.Core
  • Channel.Selection
  • Examples.Basic
  • Examples.Commitment
  • Examples.Signatures
  • Machine.Constraints
  • Machine.Core
  • SFunM

Categories

  • Discrete
  • FreeMonoidal
  • FreeStrictMonoidal
  • GradedKleisli
  • MonoidalCoherence
  • NaturalTransformationHelper
  • Properties

Class

  • Monad.Ext
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) ∷ []
}