Coverage for src/rev/Matrices.py : 67%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1#!/usr/bin/env python3
3import numpy as np
4from FADiff import FADiff
7class Vect:
8 def __init__(self):
9 pass
11 def __sub__(self, other):
12 pass
14 def __rsub__(self, other):
15 return self.__sub__(other)
17 @property
18 def val(self):
19 pass
21 @property
22 def der(self):
23 pass
25 @staticmethod
26 def _set_parents(var1, var2=None):
27 pass