forked from strata-org/Strata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStrata.lean
More file actions
36 lines (27 loc) · 841 Bytes
/
Strata.lean
File metadata and controls
36 lines (27 loc) · 841 Bytes
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
/-
Copyright Strata Contributors
SPDX-License-Identifier: Apache-2.0 OR MIT
-/
-- This module serves as the root of the `Strata` library.
-- In each category, imports are sorted by alphabetical order.
/- DDM -/
import Strata.DDM.Integration.Lean
import Strata.DDM.Ion
/- Dialect Library -/
import Strata.DL.SMT.SMT
import Strata.DL.Lambda.Lambda
import Strata.DL.Imperative.Imperative
/- Utilities -/
import Strata.Util.Sarif
/- Strata Languages -/
import Strata.Languages.Core.FactoryWF
import Strata.Languages.Core.StatementSemantics
import Strata.Languages.Core.SarifOutput
import Strata.Languages.Laurel.LaurelToCoreTranslator
/- Code Transforms -/
import Strata.Transform.CallElimCorrect
import Strata.Transform.DetToNondetCorrect
/- Backends -/
import Strata.Backends.CBMC.CProver
/- Simple API -/
import Strata.SimpleAPI