build:
	g++ -O3 -lgmp types.h Example.cpp BinaryHeap.cpp Matching.cpp Graph.cpp -o example
clean:
	rm -f example
run:
	./example -f input.txt --minweight

all: build
