4 from pathlib import Path |
4 from pathlib import Path |
5 from configparser import ConfigParser |
5 from configparser import ConfigParser |
6 ini_path = Path(dirname(__file__)) / 'library-standards.ini' |
6 ini_path = Path(dirname(__file__)) / 'library-standards.ini' |
7 library_standards = ConfigParser() |
7 library_standards = ConfigParser() |
8 |
8 |
9 with open(ini_path) as file: |
9 with ini_path.open() as file: |
10 library_standards.read_file(file) |
10 library_standards.read_file(file) |
11 |
11 |
12 def determinant_test(model): |
12 def determinant_test(model): |
13 ''' |
13 ''' |
14 Checks all subfile references for matrices with rows or columns all |
14 Checks all subfile references for matrices with rows or columns all |