2022-2023/1ST/05_Fonction_derivee/bopytex_config.py
Bertrand Benjamin c4dd2866c5
All checks were successful
continuous-integration/drone/push Build is passing
Feat: exercices techniques de dérivation
2023-01-05 10:31:28 +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,
}