-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathkore.cabal
856 lines (846 loc) · 24.3 KB
/
kore.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
cabal-version: 2.2
name: kore
version: 0.1.0
description: Please see the [README](README.md) file.
category: Language
homepage: https://github.com/runtimeverification/haskell-backend#readme
bug-reports: https://github.com/runtimeverification/haskell-backend/issues
author: Runtime Verification Inc
maintainer: ana.pantilie@runtimeverification.com
copyright: 2018-2021 Runtime Verification Inc
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/runtimeverification/haskell-backend
flag threaded
description: Use the threaded runtime. Recommended to disable for profiling.
manual: True
default: True
common haskell
-- Common Haskell dialect
default-extensions:
BangPatterns
ConstraintKinds
DataKinds
DefaultSignatures
DeriveAnyClass
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
DerivingVia
DuplicateRecordFields
EmptyCase
ExistentialQuantification
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
ImportQualifiedPost
InstanceSigs
KindSignatures
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
NoImplicitPrelude
OverloadedStrings
PatternSynonyms
RankNTypes
ScopedTypeVariables
StandaloneDeriving
Strict
TupleSections
TypeApplications
TypeFamilies
TypeOperators
TypeSynonymInstances
UndecidableInstances
ViewPatterns
default-language: Haskell2010
build-depends: base >=4.7
ghc-options:
-fno-ignore-asserts
-Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wnoncanonical-monad-instances
-Wmissing-deriving-strategies
ghc-options:
-j6
ghc-options:
if impl(ghc >= 8.4)
ghc-options: -Wmissing-export-lists -Wpartial-fields
if impl(ghc >= 8.8)
ghc-options: -fwrite-ide-info -hiedir=.hie
common exe
-- Common options for all executables
if flag(threaded)
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -T -A32M -qn4"
else
ghc-options: -rtsopts "-with-rtsopts=-A32M -T"
common library
-- Dependencies of the library, shared in common with the tests
build-depends: adjunctions >=4.4
build-depends: aeson >=1.4 && <2.2
build-depends: aeson-pretty == 0.8.10
build-depends: array
build-depends: async >=2.2
build-depends: binary >=0.8.8.0
build-depends: bytestring >=0.10
build-depends: clock >=0.8
build-depends: co-log >=0.4
build-depends: comonad >=5.0
build-depends: ghc-compact
build-depends: conduit-extra >=1.3
build-depends: containers >=0.5.8
build-depends: cryptonite >=0.25
build-depends: data-default >=0.7
build-depends: decision-diagrams >=0.2.0.0
build-depends: deepseq >=1.4
build-depends: deriving-aeson >=0.2
build-depends: directory >=1.3
build-depends: distributive >=0.6
build-depends: errors >=2.3
build-depends: exceptions >=0.10
build-depends: extra >=1.6
build-depends: fgl >=5.7
build-depends: filepath >=1.4
build-depends: free >=5.1
build-depends: generic-lens >=1.1
build-depends: generics-sop >=0.5
build-depends: ghc-events
build-depends: ghc-trace-events >=0.1
build-depends: gitrev >=1.3
build-depends: graphviz >=2999.20
-- Pin hashable to make sure cabal build uses the one Nix & Stack builds do
-- Also note that hashable-1.4.3.0 DOES NOT WORK! (see #3730)
build-depends: hashable ==1.4.2.0
build-depends: haskeline ==0.8.*
build-depends: ghc-bignum >=1.2
build-depends: json-rpc >=1.0
build-depends: kore-rpc-types
build-depends: lens >=4.17
build-depends: lifted-async
build-depends: lifted-base
build-depends: logict >=0.7
build-depends: matrix >=0.3.6.1
build-depends: megaparsec >=7.0.4
build-depends: memory >=0.15
build-depends: mmorph >=1.1
build-depends: monad-control
build-depends: monad-logger >=0.3.36
build-depends: monad-validate
build-depends: mono-traversable >=1.0
build-depends: mtl >=2.2
build-depends: multiset >=0.3.4.3
build-depends: optparse-applicative >=0.14 && <0.18.2
build-depends: parser-combinators >=1.1
build-depends: pqueue >=1.4.1.3
build-depends: prettyprinter >=1.2
build-depends: process >=1.6
build-depends: profunctors >=5.3
build-depends: recursion-schemes >=5.1
build-depends: secp256k1-haskell>=0.6
build-depends: semialign >=1
build-depends: sqlite-simple >=0.4
build-depends: stm >=2.5
build-depends: stm-conduit >= 4.0
build-depends: streams
build-depends: tar >=0.5
build-depends: template-haskell >=2.14
build-depends: temporary >=1.3
build-depends: text >=1.2
build-depends: these >=1.0
build-depends: time >=1.9.3
build-depends: transformers >=0.4
build-depends: transformers-base
build-depends: unordered-containers >=0.2
build-depends: vector >=0.12
build-depends: witherable ==0.4.*
build-depends: yaml >=0.11.5.0
build-depends: zlib >=0.6
build-tool-depends: happy:happy
build-tool-depends: alex:alex
library
import: haskell
import: library
exposed-modules:
Changed
Control.Monad.Counter
Data.Compact.Serialize
Data.Graph.TopologicalSort
Data.InternedText
Data.Limit
Data.Sup
Debug
ErrorContext
From
GlobalMain
Injection
Kore.AST.ApplicativeKore
Kore.AST.AstWithLocation
Kore.AST.Common
Kore.AST.Error
Kore.Attribute.Assoc
Kore.Attribute.Attributes
Kore.Attribute.Axiom
Kore.Attribute.Axiom.Concrete
Kore.Attribute.Axiom.Constructor
Kore.Attribute.Axiom.NonExecutable
Kore.Attribute.Axiom.Symbolic
Kore.Attribute.Axiom.Unit
Kore.Attribute.Comm
Kore.Attribute.Constructor
Kore.Attribute.Definition
Kore.Attribute.Function
Kore.Attribute.Total
Kore.Attribute.Hook
Kore.Attribute.Idem
Kore.Attribute.Injective
Kore.Attribute.Label
Kore.Attribute.Location
Kore.Attribute.Null
Kore.Attribute.Overload
Kore.Attribute.Owise
Kore.Attribute.Parser
Kore.Attribute.Pattern.ConstructorLike
Kore.Attribute.Pattern.Created
Kore.Attribute.Pattern.Defined
Kore.Attribute.Pattern.FreeVariables
Kore.Attribute.Pattern.Function
Kore.Attribute.Pattern.Total
Kore.Attribute.Pattern.Simplified
Kore.Attribute.PredicatePattern
Kore.Attribute.Priority
Kore.Attribute.ProductionID
Kore.Attribute.RuleIndex
Kore.Attribute.Simplification
Kore.Attribute.Smthook
Kore.Attribute.SmtLemma
Kore.Attribute.Smtlib
Kore.Attribute.Smtlib.Smthook
Kore.Attribute.Smtlib.Smtlib
Kore.Attribute.Sort
Kore.Attribute.Sort.Concat
Kore.Attribute.Sort.Constructors
Kore.Attribute.Sort.ConstructorsBuilder
Kore.Attribute.Sort.Element
Kore.Attribute.Sort.HasDomainValues
Kore.Attribute.Sort.Unit
Kore.Attribute.SortInjection
Kore.Attribute.Source
Kore.Attribute.SourceLocation
Kore.Attribute.Subsort
Kore.Attribute.Symbol
Kore.Attribute.Symbol.AliasKywd
Kore.Attribute.Symbol.Anywhere
Kore.Attribute.Symbol.Klabel
Kore.Attribute.Symbol.Macro
Kore.Attribute.Symbol.Memo
Kore.Attribute.Symbol.NoEvaluators
Kore.Attribute.Symbol.SymbolKywd
Kore.Attribute.Synthetic
Kore.Attribute.Trusted
Kore.Attribute.UniqueId
Kore.BugReport
Kore.Builtin
Kore.Builtin.AssocComm.AssocComm
Kore.Builtin.AssocComm.CeilSimplifier
Kore.Builtin.AssociativeCommutative
Kore.Builtin.Attributes
Kore.Builtin.Bool
Kore.Builtin.Bool.Bool
Kore.Builtin.Builtin
Kore.Builtin.Encoding
Kore.Builtin.Endianness
Kore.Builtin.Endianness.Endianness
Kore.Builtin.EqTerm
Kore.Builtin.Error
Kore.Builtin.Inj
Kore.Builtin.Int
Kore.Builtin.Int.Int
Kore.Builtin.InternalBytes
Kore.Builtin.InternalBytes.InternalBytes
Kore.Builtin.IO
Kore.Builtin.KEqual
Kore.Builtin.Kreflection
Kore.Builtin.Krypto
Kore.Builtin.List
Kore.Builtin.List.List
Kore.Builtin.Map
Kore.Builtin.Map.Map
Kore.Builtin.Set
Kore.Builtin.Set.Set
Kore.Builtin.Signedness
Kore.Builtin.Signedness.Signedness
Kore.Builtin.String
Kore.Builtin.String.String
Kore.Builtin.Symbols
Kore.Builtin.Verifiers
Kore.Debug
Kore.Equation
Kore.Equation.Application
Kore.Equation.DebugEquation
Kore.Equation.Equation
Kore.Equation.Registry
Kore.Equation.Sentence
Kore.Equation.Simplification
Kore.Equation.Validate
Kore.Error
Kore.Exec
Kore.Exec.GraphTraversal
Kore.IndexedModule.Error
Kore.IndexedModule.IndexedModule
Kore.IndexedModule.MetadataTools
Kore.IndexedModule.MetadataToolsBuilder
Kore.IndexedModule.OverloadGraph
Kore.IndexedModule.Resolvers
Kore.IndexedModule.SortGraph
Kore.Internal.Alias
Kore.Internal.ApplicationSorts
Kore.Internal.Condition
Kore.Internal.Conditional
Kore.Internal.From
Kore.Internal.Inj
Kore.Internal.InternalBool
Kore.Internal.InternalBytes
Kore.Internal.InternalInt
Kore.Internal.InternalList
Kore.Internal.InternalMap
Kore.Internal.InternalSet
Kore.Internal.InternalString
Kore.Internal.Key
Kore.Internal.MultiAnd
Kore.Internal.MultiExists
Kore.Internal.MultiOr
Kore.Internal.NormalForm
Kore.Internal.NormalizedAc
Kore.Internal.OrCondition
Kore.Internal.OrPattern
Kore.Internal.Pattern
Kore.Internal.Predicate
Kore.Internal.SideCondition
Kore.Internal.SideCondition.SideCondition
Kore.Internal.Substitution
Kore.Internal.Symbol
Kore.Internal.TermLike
Kore.Internal.TermLike.Renaming
Kore.Internal.TermLike.TermLike
Kore.Internal.Variable
Kore.JsonRpc
Kore.Log
Kore.Log.BoosterAdaptor
Kore.Log.DebugAppliedRewriteRules
Kore.Log.DebugAttemptedRewriteRules
Kore.Log.DebugBeginClaim
Kore.Log.DebugCreatedSubstitution
Kore.Log.DebugEvaluateCondition
Kore.Log.DebugProven
Kore.Log.DebugRetrySolverQuery
Kore.Log.DebugRewriteTrace
Kore.Log.DebugSolver
Kore.Log.DebugSubstitutionSimplifier
Kore.Log.DebugRewriteRulesRemainder
Kore.Log.DebugTransition
Kore.Log.DebugUnification
Kore.Log.DebugUnifyBottom
Kore.Log.DecidePredicateUnknown
Kore.Log.ErrorBottomTotalFunction
Kore.Log.ErrorEquationRightFunction
Kore.Log.ErrorEquationsSameMatch
Kore.Log.ErrorException
Kore.Log.ErrorOutOfDate
Kore.Log.ErrorParse
Kore.Log.ErrorRewriteLoop
Kore.Log.ErrorRewritesInstantiation
Kore.Log.ErrorVerify
Kore.Log.DebugAttemptUnification
Kore.Log.DebugContext
Kore.Log.JsonRpc
Kore.Log.InfoExecBreadth
Kore.Log.InfoExecDepth
Kore.Log.InfoJsonRpcCancelRequest
Kore.Log.InfoJsonRpcProcessRequest
Kore.Log.InfoProofDepth
Kore.Log.InfoReachability
Kore.Log.InfoUserLog
Kore.Log.KoreLogOptions
Kore.Log.Registry
Kore.Log.SQLite
Kore.Log.WarnBottom
Kore.Log.WarnDepthLimitExceeded
Kore.Log.WarnFunctionWithoutEvaluators
Kore.Log.WarnIfLowProductivity
Kore.Log.WarnNotAPredicate
Kore.Log.WarnNotImplemented
Kore.Log.WarnRestartSolver
Kore.Log.WarnStepTimeout
Kore.Log.WarnStuckClaimState
Kore.Log.WarnSymbolSMTRepresentation
Kore.Log.WarnTrivialClaim
Kore.Log.WarnUnexploredBranches
Kore.Log.WarnUnsimplified
Kore.ModelChecker.Simplification
Kore.ModelChecker.Step
Kore.Options
Kore.Parser
Kore.Parser.CString
Kore.Parser.Lexer
Kore.Parser.LexerWrapper
Kore.Parser.Parser
Kore.Parser.ParserUtils
Kore.Reachability
Kore.Reachability.AllPathClaim
Kore.Reachability.Claim
Kore.Reachability.ClaimState
Kore.Reachability.OnePathClaim
Kore.Reachability.Prim
Kore.Reachability.Prove
Kore.Reachability.SomeClaim
Kore.Repl
Kore.Repl.Data
Kore.Repl.Interpreter
Kore.Repl.Parser
Kore.Repl.State
Kore.Rewrite
Kore.Rewrite.AntiLeft
Kore.Rewrite.Axiom.EvaluationStrategy
Kore.Rewrite.Axiom.Identifier
Kore.Rewrite.Axiom.Matcher
Kore.Rewrite.Axiom.MatcherData
Kore.Rewrite.AxiomPattern
Kore.Rewrite.ClaimPattern
Kore.Rewrite.Function.Evaluator
Kore.Rewrite.Function.Memo
Kore.Rewrite.Implication
Kore.Rewrite.Remainder
Kore.Rewrite.Result
Kore.Rewrite.RewriteStep
Kore.Rewrite.Rule
Kore.Rewrite.Rule.Expand
Kore.Rewrite.Rule.Simplify
Kore.Rewrite.RulePattern
Kore.Rewrite.Search
Kore.Rewrite.SMT.AST
Kore.Rewrite.SMT.Declaration
Kore.Rewrite.SMT.Encoder
Kore.Rewrite.SMT.Evaluator
Kore.Rewrite.SMT.Lemma
Kore.Rewrite.SMT.Representation.All
Kore.Rewrite.SMT.Representation.Resolve
Kore.Rewrite.SMT.Representation.Sorts
Kore.Rewrite.SMT.Representation.Symbols
Kore.Rewrite.SMT.Resolvers
Kore.Rewrite.SMT.Translate
Kore.Rewrite.Step
Kore.Rewrite.Strategy
Kore.Rewrite.Substitution
Kore.Rewrite.Timeout
Kore.Rewrite.Transition
Kore.Rewrite.RewritingVariable
Kore.Rewrite.UnifyingRule
Kore.Simplify.And
Kore.Simplify.AndPredicates
Kore.Simplify.AndTerms
Kore.Simplify.API
Kore.Simplify.Application
Kore.Simplify.Bottom
Kore.Simplify.Ceil
Kore.Simplify.CeilSimplifier
Kore.Simplify.Condition
Kore.Simplify.DomainValue
Kore.Simplify.Equals
Kore.Simplify.Exists
Kore.Simplify.ExpandAlias
Kore.Simplify.Forall
Kore.Simplify.Iff
Kore.Simplify.Implies
Kore.Simplify.In
Kore.Simplify.Inhabitant
Kore.Simplify.Inj
Kore.Simplify.InjSimplifier
Kore.Simplify.InternalBool
Kore.Simplify.InternalBytes
Kore.Simplify.InternalInt
Kore.Simplify.InternalList
Kore.Simplify.InternalMap
Kore.Simplify.InternalSet
Kore.Simplify.InternalString
Kore.Simplify.Mu
Kore.Simplify.Next
Kore.Simplify.NoConfusion
Kore.Simplify.Not
Kore.Simplify.NotSimplifier
Kore.Simplify.Nu
Kore.Simplify.Or
Kore.Simplify.OrPattern
Kore.Simplify.Overloading
Kore.Simplify.OverloadSimplifier
Kore.Simplify.Pattern
Kore.Simplify.Predicate
Kore.Simplify.SetVariable
Kore.Simplify.SimplificationType
Kore.Simplify.Simplify
Kore.Simplify.StringLiteral
Kore.Simplify.SubstitutionSimplifier
Kore.Simplify.TermLike
Kore.Simplify.Top
Kore.Simplify.Variable
Kore.Sort
Kore.Substitute
Kore.Syntax
Kore.Syntax.And
Kore.Syntax.BinaryAnd
Kore.Syntax.Application
Kore.Syntax.Bottom
Kore.Syntax.Ceil
Kore.Syntax.Definition
Kore.Syntax.DomainValue
Kore.Syntax.Equals
Kore.Syntax.Exists
Kore.Syntax.Floor
Kore.Syntax.Forall
Kore.Syntax.Id
Kore.Syntax.Iff
Kore.Syntax.Implies
Kore.Syntax.In
Kore.Syntax.Inhabitant
Kore.Syntax.Json
Kore.Syntax.Json.Internal
Kore.Syntax.Module
Kore.Syntax.Mu
Kore.Syntax.Next
Kore.Syntax.Not
Kore.Syntax.Nu
Kore.Syntax.Or
Kore.Syntax.BinaryOr
Kore.Syntax.Pattern
Kore.Syntax.PatternF
Kore.Syntax.Rewrites
Kore.Syntax.Sentence
Kore.Syntax.StringLiteral
Kore.Syntax.Top
Kore.Syntax.Variable
Kore.TopBottom
Kore.Unification.Procedure
Kore.Unification.SubstitutionNormalization
Kore.Unification.SubstitutionSimplifier
Kore.Unification.UnifierT
Kore.Unification.Unify
Kore.Unification.NewUnifier
Kore.Unparser
Kore.Validate.AliasVerifier
Kore.Validate.AttributesVerifier
Kore.Validate.DefinitionVerifier
Kore.Validate.Error
Kore.Validate.ModuleVerifier
Kore.Validate.PatternVerifier
Kore.Validate.PatternVerifier.PatternVerifier
Kore.Validate.SentenceVerifier
Kore.Validate.SortVerifier
Kore.Validate.Verifier
Kore.Variables.Binding
Kore.Variables.Free
Kore.Variables.Fresh
Kore.Verified
Kore.VersionInfo
Log
Log.Entry
Logic
Options.SMT
Paths_kore
Pair
Partial
Prelude.Kore
Pretty
Prof
SMT
SMT.AST
SMT.SimpleSMT
SMT.Utils
SQL
SQL.ColumnDef
SQL.Key
SQL.Query
SQL.SOP
SQL.SQL
Stats
hs-source-dirs:
src
app/share
executable kore-exec
import: haskell
import: exe
main-is: Main.hs
hs-source-dirs: app/exec
build-depends: kore
build-depends: binary >=0.8.8.0
build-depends: bytestring >=0.10
build-depends: clock >=0.8
build-depends: ghc-compact
build-depends: containers >=0.5
build-depends: data-default >=0.7
build-depends: directory >=1.3
build-depends: exceptions >=0.10
build-depends: extra >=1.6
build-depends: filepath >=1.4
build-depends: generic-lens >=1.1
build-depends: lens >=4.17
build-depends: monad-validate
build-depends: optparse-applicative >=0.14
build-depends: prettyprinter >=1.7
build-depends: text >=1.2
build-depends: time >=1.9.3
executable kore-rpc
import: haskell
import: exe
main-is: Main.hs
hs-source-dirs: app/rpc
build-depends: kore
build-depends: clock >=0.8
build-depends: containers >=0.5
build-depends: directory >=1.3
build-depends: exceptions >=0.10
build-depends: mtl >=2.2
build-depends: optparse-applicative >=0.14
build-depends: time >=1.9.3
executable kore-repl
import: haskell
import: exe
main-is: Main.hs
hs-source-dirs: app/repl
build-depends: kore
build-depends: clock >=0.8
build-depends: exceptions >=0.10
build-depends: extra >= 1.7
build-depends: filepath >=1.4
build-depends: optparse-applicative >=0.14
test-suite kore-test
import: haskell
import: library
import: exe
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules:
Driver
Test.ConsistentKore
Test.Data.Graph.TopologicalSort
Test.Data.InternedText
Test.Data.Limit
Test.Data.Sup
Test.Debug
Test.Expect
Test.Injection
Test.Kore
Test.Kore.AST.Common
Test.Kore.Attribute.Assoc
Test.Kore.Attribute.Axiom.Concrete
Test.Kore.Attribute.Axiom.Symbolic
Test.Kore.Attribute.Axiom.Unit
Test.Kore.Attribute.Comm
Test.Kore.Attribute.Constructor
Test.Kore.Attribute.Function
Test.Kore.Attribute.Total
Test.Kore.Attribute.Hook
Test.Kore.Attribute.Idem
Test.Kore.Attribute.Injective
Test.Kore.Attribute.Label
Test.Kore.Attribute.NonExecutable
Test.Kore.Attribute.Overload
Test.Kore.Attribute.Owise
Test.Kore.Attribute.Parser
Test.Kore.Attribute.Pattern.ConstructorLike
Test.Kore.Attribute.Pattern.Defined
Test.Kore.Attribute.Pattern.FreeVariables
Test.Kore.Attribute.Pattern.Function
Test.Kore.Attribute.Pattern.Total
Test.Kore.Attribute.Pattern.Sort
Test.Kore.Attribute.Priority
Test.Kore.Attribute.ProductionID
Test.Kore.Attribute.Simplification
Test.Kore.Attribute.Smtlib
Test.Kore.Attribute.Sort.ConstructorsBuilder
Test.Kore.Attribute.Sort.HasDomainValues
Test.Kore.Attribute.Sort.Unit
Test.Kore.Attribute.SortInjection
Test.Kore.Attribute.Subsort
Test.Kore.Attribute.Symbol
Test.Kore.Attribute.Symbol.Anywhere
Test.Kore.Attribute.Symbol.Klabel
Test.Kore.Attribute.Symbol.Memo
Test.Kore.Attribute.Symbol.NoEvaluators
Test.Kore.Attribute.Symbol.SymbolKywd
Test.Kore.Attribute.Trusted
Test.Kore.Attribute.UniqueId
Test.Kore.BugReport
Test.Kore.Builtin
Test.Kore.Builtin.AssocComm.CeilSimplifier
Test.Kore.Builtin.Bool
Test.Kore.Builtin.Builtin
Test.Kore.Builtin.Definition
Test.Kore.Builtin.Encoding
Test.Kore.Builtin.Endianness
Test.Kore.Builtin.External
Test.Kore.Builtin.Inj
Test.Kore.Builtin.Int
Test.Kore.Builtin.InternalBytes
Test.Kore.Builtin.IO
Test.Kore.Builtin.KEqual
Test.Kore.Builtin.Krypto
Test.Kore.Builtin.List
Test.Kore.Builtin.Map
Test.Kore.Builtin.Set
Test.Kore.Builtin.Signedness
Test.Kore.Builtin.String
Test.Kore.Contains
Test.Kore.Equation.Application
Test.Kore.Equation.Common
Test.Kore.Equation.Sentence
Test.Kore.Equation.Simplification
Test.Kore.Error
Test.Kore.Exec
Test.Kore.IndexedModule.Error
Test.Kore.IndexedModule.MockMetadataTools
Test.Kore.IndexedModule.OverloadGraph
Test.Kore.IndexedModule.Resolvers
Test.Kore.IndexedModule.SortGraph
Test.Kore.Internal.ApplicationSorts
Test.Kore.Internal.Condition
Test.Kore.Internal.From
Test.Kore.Internal.Key
Test.Kore.Internal.MultiAnd
Test.Kore.Internal.MultiExists
Test.Kore.Internal.OrCondition
Test.Kore.Internal.OrPattern
Test.Kore.Internal.Pattern
Test.Kore.Internal.Predicate
Test.Kore.Internal.SideCondition
Test.Kore.Internal.Substitution
Test.Kore.Internal.Symbol
Test.Kore.Internal.TermLike
Test.Kore.Log.DebugEvaluateCondition
Test.Kore.Log.ErrorBottomTotalFunction
Test.Kore.Log.WarnFunctionWithoutEvaluators
Test.Kore.Log.WarnSymbolSMTRepresentation
Test.Kore.Options
Test.Kore.Parser
Test.Kore.Parser.Lexer
Test.Kore.Parser.Parser
Test.Kore.Reachability.Claim
Test.Kore.Reachability.MockAllPath
Test.Kore.Reachability.OnePathStrategy
Test.Kore.Reachability.Prove
Test.Kore.Reachability.SomeClaim
Test.Kore.Repl.Graph
Test.Kore.Repl.Interpreter
Test.Kore.Repl.Parser
Test.Kore.Repl.ParserTest
Test.Kore.Rewrite
Test.Kore.Rewrite.AntiLeft
Test.Kore.Rewrite.Axiom.EvaluationStrategy
Test.Kore.Rewrite.Axiom.Identifier
Test.Kore.Rewrite.Axiom.Matcher
Test.Kore.Rewrite.Axiom.Registry
Test.Kore.Rewrite.ClaimPattern
Test.Kore.Rewrite.Function.Evaluator
Test.Kore.Rewrite.Function.Integration
Test.Kore.Rewrite.Function.Memo
Test.Kore.Rewrite.Implication
Test.Kore.Rewrite.MockSymbols
Test.Kore.Rewrite.Remainder
Test.Kore.Rewrite.RewriteStep
Test.Kore.Rewrite.Rule
Test.Kore.Rewrite.Rule.Common
Test.Kore.Rewrite.Rule.Expand
Test.Kore.Rewrite.Rule.Simplify
Test.Kore.Rewrite.RulePattern
Test.Kore.Rewrite.SMT.Builders
Test.Kore.Rewrite.SMT.Evaluator
Test.Kore.Rewrite.SMT.Helpers
Test.Kore.Rewrite.SMT.Representation.All
Test.Kore.Rewrite.SMT.Representation.Builders
Test.Kore.Rewrite.SMT.Representation.Helpers
Test.Kore.Rewrite.SMT.Representation.Sorts
Test.Kore.Rewrite.SMT.Representation.Symbols
Test.Kore.Rewrite.SMT.Sorts
Test.Kore.Rewrite.SMT.Symbols
Test.Kore.Rewrite.SMT.Translate
Test.Kore.Rewrite.Strategy
Test.Kore.Rewrite.Transition
Test.Kore.Rewrite.RewritingVariable
Test.Kore.Simplify
Test.Kore.Simplify.And
Test.Kore.Simplify.AndTerms
Test.Kore.Simplify.Application
Test.Kore.Simplify.Bottom
Test.Kore.Simplify.Ceil
Test.Kore.Simplify.Condition
Test.Kore.Simplify.DomainValue
Test.Kore.Simplify.Equals
Test.Kore.Simplify.Exists
Test.Kore.Simplify.Forall
Test.Kore.Simplify.Iff
Test.Kore.Simplify.Implies
Test.Kore.Simplify.Inj
Test.Kore.Simplify.InjSimplifier
Test.Kore.Simplify.Integration
Test.Kore.Simplify.IntegrationProperty
Test.Kore.Simplify.InternalList
Test.Kore.Simplify.InternalMap
Test.Kore.Simplify.InternalSet
Test.Kore.Simplify.Next
Test.Kore.Simplify.Not
Test.Kore.Simplify.Or
Test.Kore.Simplify.OrPattern
Test.Kore.Simplify.Overloading
Test.Kore.Simplify.Predicate
Test.Kore.Simplify.Pattern
Test.Kore.Simplify.StringLiteral
Test.Kore.Simplify.SubstitutionSimplifier
Test.Kore.Simplify.TermLike
Test.Kore.Simplify.Top
Test.Kore.Syntax.Id
Test.Kore.Syntax.Json
Test.Kore.Syntax.Json.Roundtrips
Test.Kore.Syntax.Variable
Test.Kore.TopBottom
Test.Kore.Unification.SubstitutionNormalization
Test.Kore.Unification.Unifier
Test.Kore.Unification.UnifierT
Test.Kore.Unparser
Test.Kore.Validate.DefinitionVerifier
Test.Kore.Validate.DefinitionVerifier.Imports
Test.Kore.Validate.DefinitionVerifier.PatternVerifier
Test.Kore.Validate.DefinitionVerifier.SentenceVerifier
Test.Kore.Validate.DefinitionVerifier.SortUsage
Test.Kore.Validate.DefinitionVerifier.UniqueNames
Test.Kore.Validate.DefinitionVerifier.UniqueSortVariables
Test.Kore.Variables.Fresh
Test.Kore.Variables.V
Test.Kore.Variables.W
Test.Kore.With
Test.Pretty
Test.SMT
Test.SMT.AST
Test.SQL
Test.Stats
Test.Tasty.HUnit.Ext
Test.Terse
hs-source-dirs: test
build-tool-depends: tasty-discover:tasty-discover >=4.2 && <5.1
build-depends: kore
build-depends: QuickCheck >=2.13
build-depends: hedgehog >=1.0
build-depends: quickcheck-instances >=0.3
build-depends: tasty >=1.2
build-depends: tasty-golden >=2.3
build-depends: tasty-hedgehog >=1.3
build-depends: tasty-hunit >=0.10
build-depends: tasty-quickcheck >=0.10
build-depends: template-haskell >=2.14