all:out.txt
	cat $<

out.txt: main.py qnewton.py ../matrix/matrix.py
	python3 $< 2> log 1> $@

clean:
	rm -rf out* __pycache__
