diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2022-01-28 14:44:57 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2022-02-07 16:22:43 +0100 |
commit | 741f88ab405995003eb6e9f301d3b065c1e84a4a (patch) | |
tree | 08ba9ec2247c56680611d542ed9b096c5f1a083b /lib/application | |
parent | c0c82a7bfe8300b1bd50fee11074837ff32d3da0 (diff) |
Added a motus solver
Diffstat (limited to 'lib/application')
-rwxr-xr-x | lib/application/application.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/application/application.ml b/lib/application/application.ml index b6ece93..8787d39 100755 --- a/lib/application/application.ml +++ b/lib/application/application.ml @@ -18,6 +18,7 @@ struct in Note.S.accum ?eq init action + let dispatch : (module Procesor with type t = 's) -> 's -> event = fun (type s) (module P : Procesor with type t = s) v -> E (v, (module P)) end |