9 lines
197 B
Python
9 lines
197 B
Python
"""
|
|
# math module
|
|
|
|
Funcionality for math things. Contains tedious algorithms like binary exponentiation.
|
|
"""
|
|
from . import modexp as modexp
|
|
from . import modred as modred
|
|
from . import pm1 as pm1
|
|
|