Skip to content

Commit 0dab22a

Browse files
committed
big change, removed all pseudo polynomial code and vastly simplified instructions. The polynomial step is now done with a complex polynomial of order 6H - 1.
1 parent b77a5c6 commit 0dab22a

12 files changed

+303
-1267
lines changed

Makefile

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
package=ftperiodogram
2+
3+
clean :
4+
rm $(package)/*pyc $(package)/tests/*pyc
5+
16
test :
2-
py.test ftperiodogram
7+
py.test $(package)
38

49
test-coverage :
5-
py.test --cov=ftperiodogram ftperiodogram
6-
10+
py.test --cov=$(package) $(package)
711

812
test-coverage-report :
9-
py.test --cov-report term-missing --cov=ftperiodogram ftperiodogram
13+
py.test --cov-report term-missing --cov=$(package) $(package)
14+
15+

custom_testing.py

-257
This file was deleted.

0 commit comments

Comments
 (0)