Skip to content

Commit cbbb786

Browse files
committed
Freeze v0.5.0 docs
1 parent 1122993 commit cbbb786

File tree

353 files changed

+24156
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

353 files changed

+24156
-0
lines changed

docusaurus.config.ts

+11
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ const config: Config = {
3737
'classic',
3838
{
3939
docs: {
40+
versions: {
41+
current: {
42+
label: 'Nightly 🚧',
43+
},
44+
},
4045
sidebarPath: './docs/sidebars.ts',
4146
// Please change this to your repo.
4247
// Remove this to remove the "edit this page" links.
@@ -80,6 +85,12 @@ const config: Config = {
8085
{to: '/blog', label: 'Blog', position: 'left'},
8186
{to: '/research', label: 'Research', position: 'left'},
8287
{to: '/community', label: 'Community', position: 'left'},
88+
{
89+
type: 'docsVersionDropdown',
90+
position: 'right',
91+
// dropdownItemsAfter: [{to: '/versions', label: 'All versions'}],
92+
dropdownActiveClassDisabled: true,
93+
},
8394
{
8495
href: 'https://github.com/lf-lang/',
8596
position: 'right',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bin
2+
src-gen
3+
include
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
target C {
2+
timeout: 3 secs
3+
}
4+
5+
main reactor Alignment {
6+
state s: int = 0
7+
timer t1(100 msec, 100 msec)
8+
timer t2(200 msec, 200 msec)
9+
timer t4(400 msec, 400 msec)
10+
11+
reaction(t1) {=
12+
self->s += 1;
13+
=}
14+
15+
reaction(t2) {=
16+
self->s -= 2;
17+
=}
18+
19+
reaction(t4) {=
20+
printf("s = %d\n", self->s);
21+
=}
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
target C {
2+
keepalive: true // Do not exit when event queue is empty.
3+
}
4+
5+
preamble {=
6+
#include "platform.h" // Defines lf_sleep() and thread functions.
7+
=}
8+
9+
main reactor {
10+
preamble {=
11+
// Schedule an event roughly every 200 msec.
12+
void* external(void* a) {
13+
while (true) {
14+
lf_sleep(MSEC(200));
15+
lf_schedule(a, 0);
16+
}
17+
}
18+
=}
19+
state thread_id: lf_thread_t = 0
20+
physical action a(100 msec): int
21+
22+
reaction(startup) -> a {=
23+
// Start a thread to schedule physical actions.
24+
lf_thread_create(&self->thread_id, &external, a);
25+
=}
26+
27+
reaction(a) {=
28+
interval_t elapsed_time = lf_time_logical_elapsed();
29+
printf("Action triggered at logical time %lld nsec after start.\n", elapsed_time);
30+
=}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
target C;
2+
preamble {=
3+
int table[] = {4, 3, 2, 1};
4+
=}
5+
reactor A(bank_index:int = 0, value:int = 0) {
6+
reaction (startup) {=
7+
printf("bank_index: %d, value: %d\n", self->bank_index, self->value);
8+
=}
9+
}
10+
main reactor {
11+
a = new[4] A(value = {= table[bank_index] =});
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
target C;
2+
3+
reactor Count {
4+
output out:int;
5+
reaction(startup) -> out {=
6+
int count = 0;
7+
while (!lf_check_deadline(self, true)) {
8+
count++;
9+
}
10+
lf_set(out, count);
11+
=} deadline (3 msec) {=
12+
printf("Stopped counting.\n");
13+
=}
14+
}
15+
16+
main reactor {
17+
c = new Count();
18+
reaction(c.out) {=
19+
printf("Counted to %d\n", c.out->value);
20+
=}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
target C;
2+
reactor Child (
3+
bank_index:int = 0
4+
) {
5+
reaction(startup) {=
6+
printf("My bank index: %d.\n", self->bank_index);
7+
=}
8+
}
9+
reactor Parent (
10+
bank_index:int = 0
11+
) {
12+
c = new[2] Child();
13+
}
14+
main reactor {
15+
p = new[2] Parent();
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
target C
2+
3+
reactor Child(bank_index: int = 0, parent_bank_index: int = 0) {
4+
reaction(startup) {=
5+
printf(
6+
"My bank index: %d. My parent's bank index: %d.\n",
7+
self->bank_index, self->parent_bank_index
8+
);
9+
=}
10+
}
11+
12+
reactor Parent(bank_index: int = 0) {
13+
c = new[2] Child(parent_bank_index=bank_index)
14+
}
15+
16+
main reactor {
17+
p = new[2] Parent()
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
target C
2+
3+
reactor Child(bank_index: int = 0, parent_bank_index: int = 0) {
4+
output out: int
5+
6+
reaction(startup) -> out {=
7+
lf_set(out, self->parent_bank_index * 2 + self->bank_index);
8+
=}
9+
}
10+
11+
reactor Parent(bank_index: int = 0) {
12+
c = new[2] Child(parent_bank_index=bank_index)
13+
14+
reaction(c.out) {=
15+
for (int i=0; i < c_width; i++) {
16+
printf("Received %d from child %d.\n", c[i].out->value, i);
17+
}
18+
=}
19+
}
20+
21+
main reactor {
22+
p = new[2] Parent()
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
target C
2+
3+
import Overwriting from "Overwriting.lf"
4+
5+
main reactor {
6+
s = new Overwriting()
7+
8+
reaction(s.y) {=
9+
if (s.y->value != 0 && s.y->value != 1) {
10+
lf_print_error_and_exit("Outputs should only be 0 or 1!");
11+
}
12+
=}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
target C
2+
3+
reactor Count {
4+
state count: int = 0
5+
output y: int
6+
timer t(0, 100 msec)
7+
8+
reaction(t) -> y {=
9+
lf_set(y, self->count++);
10+
=}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
target C;
2+
reactor A {
3+
input x:int;
4+
output y:int;
5+
reaction(x) -> y {=
6+
// ... something here ...
7+
=}
8+
}
9+
reactor B {
10+
input x:int;
11+
output y:int;
12+
reaction(x) {=
13+
// ... something here ...
14+
=}
15+
reaction(startup) -> y {=
16+
// ... something here ...
17+
=}
18+
}
19+
main reactor {
20+
a = new A();
21+
b = new B();
22+
a.y -> b.x;
23+
b.y -> a.x;
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
target C;
2+
reactor A {
3+
input x:int;
4+
output y:int;
5+
reaction(x) -> y {=
6+
// ... something here ...
7+
=}
8+
}
9+
reactor B {
10+
input x:int;
11+
output y:int;
12+
reaction(startup) -> y {=
13+
// ... something here ...
14+
=}
15+
reaction(x) {=
16+
// ... something here ...
17+
=}
18+
}
19+
main reactor {
20+
a = new A();
21+
b = new B();
22+
a.y -> b.x;
23+
b.y -> a.x;
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
target C;
2+
reactor A {
3+
input x:int;
4+
output y:int;
5+
reaction(x) -> y {=
6+
// ... something here ...
7+
=}
8+
}
9+
reactor B {
10+
input x:int;
11+
output y:int;
12+
reaction(x) {=
13+
// ... something here ...
14+
=}
15+
reaction(startup) -> y {=
16+
// ... something here ...
17+
=}
18+
}
19+
main reactor {
20+
a = new A();
21+
b = new B();
22+
a.y -> b.x after 0;
23+
b.y -> a.x;
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
target C;
2+
reactor Deadline {
3+
input x:int;
4+
output d:int; // Produced if the deadline is violated.
5+
reaction(x) -> d {=
6+
printf("Normal reaction.\n");
7+
=} deadline(10 msec) {=
8+
printf("Deadline violation detected.\n");
9+
lf_set(d, x->value);
10+
=}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
target C
2+
3+
import Deadline from "Deadline.lf"
4+
5+
preamble {=
6+
#include "platform.h"
7+
=}
8+
9+
main reactor {
10+
logical action a
11+
d = new Deadline()
12+
13+
reaction(startup) -> d.x, a {=
14+
lf_set(d.x, 0);
15+
lf_schedule(a, 0);
16+
=}
17+
18+
reaction(a) -> d.x {=
19+
lf_set(d.x, 0);
20+
lf_sleep(MSEC(20));
21+
=}
22+
23+
reaction(d.d) {=
24+
printf("Deadline reactor produced an output.\n");
25+
=}
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
target C {
2+
timeout: 5 sec,
3+
coordination: decentralized
4+
}
5+
import Count, Print from "Federated.lf"
6+
federated reactor {
7+
c = new Count();
8+
p = new Print();
9+
c.out -> p.in;
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
target C {
2+
timeout: 5 sec,
3+
coordination: decentralized
4+
}
5+
reactor CountPrint {
6+
input in:int;
7+
output out:int;
8+
state c:int(0);
9+
timer t(0, 1 sec);
10+
reaction(t) -> out {=
11+
lf_set(out, self->c++);
12+
=}
13+
reaction(in) {=
14+
lf_print("***** CountPrint Received: %d at tag (%lld, %u)",
15+
in->value, lf_time_logical_elapsed(), lf_tag().microstep
16+
);
17+
=} STP(10 msec) {=
18+
lf_print_warning("CountPrint: Safe to process violation!");
19+
lf_print("Intended time: %lld", in->intended_tag.time - lf_time_start());
20+
=}
21+
}
22+
23+
reactor PrintCount {
24+
input in:int;
25+
output out:int;
26+
timer t(0, 999 msec);
27+
state c:int(0);
28+
reaction(in) {=
29+
lf_print("***** PrintCount Received: %d at tag (%lld, %u)",
30+
in->value, lf_time_logical_elapsed(), lf_tag().microstep
31+
);
32+
=} STP(10 msec) {=
33+
lf_print_warning("PrintCount: Safe to process violation!");
34+
lf_print("Intended time: %lld", in->intended_tag.time - lf_time_start());
35+
=}
36+
reaction(t) -> out {=
37+
lf_set(out, self->c++);
38+
=}
39+
}
40+
41+
federated reactor {
42+
c = new CountPrint();
43+
p = new PrintCount();
44+
c.out -> p.in;
45+
p.out -> c.in;
46+
}

0 commit comments

Comments
 (0)