diff options
Diffstat (limited to '')
-rw-r--r-- | sumofsquares/canon.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sumofsquares/canon.py b/sumofsquares/canon.py new file mode 100644 index 0000000..4918758 --- /dev/null +++ b/sumofsquares/canon.py @@ -0,0 +1,11 @@ +""" Canonicalization of Problems """ +from .abc import Problem + + +def log_canon(prob: Problem) -> Problem: + raise NotImplementedError + + +def log_det_canon(prob: Problem) -> Problem: + raise NotImplementedError + |