|
| 1 | +;;;; -*- Scheme -*- |
| 2 | + |
| 3 | +((synopsis "Hybrid dynamical systems modeling.") |
| 4 | + (license "GPL-3") |
| 5 | + (category data) |
| 6 | + (dependencies datatype matchable make mathh lalr datatype unitconv fmt) |
| 7 | + (test-dependencies test) |
| 8 | + (author "Ivan Raikov") |
| 9 | + (components |
| 10 | + (generated-source-file expr-parser |
| 11 | + (source "expr.grm.scm") |
| 12 | + (custom-build "gen-expr-parser")) |
| 13 | + (extension salt |
| 14 | + (component-dependencies expr-parser)) |
| 15 | + (data salt-lib |
| 16 | + (files |
| 17 | + "sml-lib/mlb-path-map" |
| 18 | + |
| 19 | + "sml-lib/rk/rk.sml" |
| 20 | + "sml-lib/rk/rk.mlb" |
| 21 | + "sml-lib/rk/crk.sml" |
| 22 | + "sml-lib/rk/crk.mlb" |
| 23 | + "sml-lib/rk/crklib.c" |
| 24 | + "sml-lib/rk/crk_common.h" |
| 25 | + |
| 26 | + "sml-lib/dynamics/dynamics.sig" |
| 27 | + "sml-lib/dynamics/dynamics.sml" |
| 28 | + "sml-lib/dynamics/dynamics.mlb" |
| 29 | + |
| 30 | + "sml-lib/queue/fun-queue.sig" |
| 31 | + "sml-lib/queue/fun-queue.sml" |
| 32 | + "sml-lib/queue/fun-queue.mlb" |
| 33 | + |
| 34 | + "sml-lib/prioq/SkewBinomialHeap.sml" |
| 35 | + "sml-lib/prioq/prioq.sml" |
| 36 | + "sml-lib/prioq/prioq.mlb" |
| 37 | + |
| 38 | + "sml-lib/lininterp/lininterp.sml" |
| 39 | + "sml-lib/lininterp/lininterp.mlb" |
| 40 | + |
| 41 | + "sml-lib/randmtzig/randmtzig.sml" |
| 42 | + "sml-lib/randmtzig/randmtziglib.c" |
| 43 | + "sml-lib/randmtzig/randmtzig.mlb" |
| 44 | + |
| 45 | + "sml-lib/findroot/findroot.sml" |
| 46 | + "sml-lib/findroot/findroot.mlb" |
| 47 | + |
| 48 | + "sml-lib/printf/printf.sml" |
| 49 | + "sml-lib/printf/printf.mlb" |
| 50 | + |
| 51 | + "sml-lib/state/state.sml" |
| 52 | + "sml-lib/state/state.mlb" |
| 53 | + |
| 54 | + "sml-lib/model/model.sig" |
| 55 | + "sml-lib/model/model-randmtzig.sig" |
| 56 | + "sml-lib/model/prelude.sml" |
| 57 | + "sml-lib/model/options.sml" |
| 58 | + "sml-lib/model/model_run.sml" |
| 59 | + "sml-lib/model/random.sml") |
| 60 | + |
| 61 | + ) |
| 62 | + |
| 63 | + )) |
0 commit comments