Skip to content

Commit be5a908

Browse files
philippeitisJoseph Weston
authored andcommitted
Update triangulation.py
Forgot to run pre-commit.
1 parent 8df24b0 commit be5a908

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

adaptive/learner/triangulation.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
from collections.abc import Iterable, Sized
33
from itertools import chain, combinations
44
from math import factorial, sqrt
5-
import scipy.spatial
65

6+
import scipy.spatial
77
from numpy import (
8-
square,
9-
zeros,
10-
subtract,
8+
abs,
119
array,
12-
ones,
13-
dot,
1410
asarray,
15-
concatenate,
1611
average,
12+
concatenate,
13+
dot,
1714
eye,
1815
mean,
19-
abs,
16+
ones,
17+
square,
18+
subtract,
2019
)
2120
from numpy import sum as nsum
21+
from numpy import zeros
2222
from numpy.linalg import det as ndet
23-
from numpy.linalg import slogdet, solve, matrix_rank, norm
23+
from numpy.linalg import matrix_rank, norm, slogdet, solve
2424

2525

2626
def fast_norm(v):

0 commit comments

Comments
 (0)