diff options
author | Son Ho | 2022-12-14 11:03:12 +0100 |
---|---|---|
committer | Son HO | 2023-02-03 11:21:46 +0100 |
commit | 47417ab258f9d192f4d872c6bea8096348802aa3 (patch) | |
tree | 3a377f39455429855d28e8c9bdd4cb800147298c /compiler/dune | |
parent | a5d09658b0c15862b609226d18f072c5d9f1e953 (diff) |
Add an SCC.ml file for strongly connected components
Diffstat (limited to 'compiler/dune')
-rw-r--r-- | compiler/dune | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/dune b/compiler/dune index 9e92b583..7cae6b89 100644 --- a/compiler/dune +++ b/compiler/dune @@ -10,7 +10,7 @@ (public_name aeneas) ;; The name as revealed to the projects importing this library (preprocess (pps ppx_deriving.show ppx_deriving.ord visitors.ppx)) - (libraries charon core_unix unionFind) + (libraries charon core_unix unionFind ocamlgraph) (modules Assumed Collections @@ -48,6 +48,7 @@ Pure PureTypeCheck PureUtils + SCC Scalars StringUtils Substitute |