This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"nodes":[ | |
{"x":80, "r":40, "label":"Node 1"}, | |
{"x":200, "r":60, "label":"Node 2"}, | |
{"x":380, "r":80, "label":"Node 3"} | |
]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns sim-cincyfp.core) | |
(def min (* 1000 60)) | |
(def min5 (* 5 min)) | |
(def min10 (* 10 min)) | |
(def min15 (* 15 min)) | |
(def min30 (* 30 min)) | |
;; --------------------------------------------------------------------- | |
;; Generating Events |
OlderNewer