[ci] Upgrade to wpiformat 2026.64 (#8993)

This commit is contained in:
Tyler Veness
2026-06-19 06:40:55 -07:00
committed by GitHub
parent e92478c212
commit ad797456f5
16 changed files with 130 additions and 100 deletions

17
wpimath/algorithms/ExponentialProfileModel.py Normal file → Executable file
View File

@@ -1,5 +1,18 @@
from sympy import *
from sympy.logic.boolalg import *
#!/usr/bin/env python3
from sympy import (
Eq,
Function,
dsolve,
exp,
expand,
init_printing,
log,
simplify,
solve,
symbols,
)
from sympy.logic.boolalg import SOPform
init_printing()