Crates.io | chandeliers-std |
lib.rs | chandeliers-std |
version | 1.0.0 |
source | src |
created_at | 2023-10-25 12:49:06.891226 |
updated_at | 2024-01-05 20:23:50.260622 |
description | A standard library for the Chandeliers suite |
homepage | |
repository | https://github.com/Vanille-N/chandeliers |
max_upload_size | |
id | 1013341 |
size | 5,482 |
Standard library for the Chandeliers suite (Lustre-in-Rust).
This crates provides definitions of Lustre nodes written in the style of Candle
(see chandeliers-sem
). These nodes usually cannot be primitively expressed
in pure Lustre.
In module cast
:
extern node float_of_int(i : int) returns (f : float);
extern node ceil(f : float) returns (i : int);
extern node floor(f : float) returns (i : int);
In module rand
:
extern node random_int() returns (i : int);
extern node random_float() returns (f : float);
extern node random_bool() returns (b : bool);