1
0
mirror of https://github.com/ellmau/adf-obdd.git synced 2025-12-20 09:39:38 +01:00

Use standard example for adfs on the frontend

This commit is contained in:
Stefan Ellmauthaler 2022-09-05 11:36:24 +02:00 committed by monsterkrampe
parent 07537c6d25
commit 92954cf87b
No known key found for this signature in database
GPG Key ID: B8ADC1F5A5CE5057

View File

@ -29,25 +29,14 @@ const darkTheme = createTheme({
}, },
}); });
const placeholder = `s(7). const placeholder = `s(a).
s(4). s(b).
s(8). s(c).
s(3). s(d).
s(5). ac(a,c(v)).
s(9). ac(b,b).
s(10). ac(c,and(a,b)).
s(1). ac(d,neg(b)).`;
s(6).
s(2).
ac(7,c(v)).
ac(4,6).
ac(8,or(neg(1),7)).
ac(3,and(or(7,neg(6)),2)).
ac(5,4).
ac(9,neg(7)).
ac(10,and(neg(2),6)).
ac(1,and(neg(7),2)).
ac(6,neg(7)).ac(2,and(neg(9),neg(6))).`;
enum Parsing { enum Parsing {
Naive = 'Naive', Naive = 'Naive',