aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/Schedule.ml
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-03-22 16:43:39 +0000
committerYann Herklotz <git@yannherklotz.com>2022-03-22 16:43:39 +0000
commit2d647ce5fdf5343a7d9961a63d66b5191706aeaf (patch)
tree7d53f84f4a923a10679a2172d431f4482dbdaa87 /src/hls/Schedule.ml
parent2c33145e2de887964b68466d1691d0455d63334b (diff)
downloadvericert-2d647ce5fdf5343a7d9961a63d66b5191706aeaf.tar.gz
vericert-2d647ce5fdf5343a7d9961a63d66b5191706aeaf.zip
Add comments to allow for literate detangling
Diffstat (limited to 'src/hls/Schedule.ml')
-rw-r--r--src/hls/Schedule.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/hls/Schedule.ml b/src/hls/Schedule.ml
index 11c7308..88aa6fd 100644
--- a/src/hls/Schedule.ml
+++ b/src/hls/Schedule.ml
@@ -1,6 +1,6 @@
(*
* Vericert: Verified high-level synthesis.
- * Copyright (C) 2020 Yann Herklotz <yann@yannherklotz.com>
+ * Copyright (C) 2020-2022 Yann Herklotz <yann@yannherklotz.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -16,6 +16,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*)
+(* [[file:../../lit/scheduling.org::scheduler-main][scheduler-main]] *)
open Printf
open Clflags
open Camlcoq
@@ -881,3 +882,4 @@ let schedule_fn (f : RTLBlock.coq_function) : RTLPar.coq_function =
fn_code = scheduled (*List.fold_left (add_to_tree scheduled) PTree.empty reachable*);
fn_entrypoint = f.fn_entrypoint
}
+(* scheduler-main ends here *)