2022-2023/2nd/08_Tableaux_representant_une_fonction/bopytex_config.py
Bertrand Benjamin 561a44b719
All checks were successful
continuous-integration/drone/push Build is passing
Feat(2nd): fin des exercices et solution pour le chapitre sur les
tableaux de fonctions
2023-01-03 18:56:12 +01:00

13 lines
297 B
Python

# bopytex_config.py
from mapytex.calculus.random import expression as random_expression
from mapytex import render
import random
random.seed(0) # Controlling the seed allows to make subject reproductible
render.set_render("tex")
direct_access = {
"random_expression": random_expression,
}