this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Continue rapport

+6 -5
+6 -5
rapport/context.typ
··· 37 37 38 38 #let exhaustive_memory_table = (caption, filled: false) => { 39 39 let maybe = content => if filled { content } else { [] } 40 + let costs = (plus_one, minus_one) => [ $+1 |-> #plus_one quad -1 |-> #minus_one$ ] 40 41 pad(x: 10%, figure( 41 42 table( 42 43 columns: (1fr, 1fr, 1fr), 43 44 align: left, 44 45 inset: 8pt, 45 46 [*État courant* $(x, "retour")$], [*Action à effectuer* +1 ou -1], [*Coûts associés*], 46 - [ $(0, "C'est plus")$ ], maybe[ +1 ], maybe[ $+1 |-> 2, -1 |-> 2$ ], 47 - [ $(1, "C'est plus")$ ], maybe[ +1 ], maybe[ $+1 |-> 1, -1 |-> 2$ ], 48 - [ $(3, "C'est moins")$ ], maybe[ -1 ], maybe[ $+1 |-> 2, -1 |-> 1$ ], 49 - [ $(4, "C'est moins")$ ], maybe[ -1 ], maybe[ $+1 |-> 3, -1 |-> 2$ ], 50 - [ $(5, "C'est moins")$ ], maybe[ -1 ], maybe[ $+1 |-> 4, -1 |-> 3$ ], 47 + [ $(0, "C'est plus")$ ], maybe[ +1 ], maybe(costs(2, 2)), 48 + [ $(1, "C'est plus")$ ], maybe[ +1 ], maybe(costs(1, 2)), 49 + [ $(3, "C'est moins")$ ], maybe[ -1 ], maybe(costs(2, 3)), 50 + [ $(4, "C'est moins")$ ], maybe[ -1 ], maybe(costs(3, 4)), 51 + [ $(5, "C'est moins")$ ], maybe[ -1 ], maybe(costs(4, 5)) 51 52 ), 52 53 caption: caption 53 54 ))
rapport/main.pdf

This is a binary file and will not be displayed.