Several changes in Kruskal alg.
- Input object interface was changed to an STL compatible one.
- template parameters of class KruskalPairVec has been simplified.
- (the most of) the names meet the naming conventions.
- a lot of (but still not enough) documentation has been added.
- class KruskalMapVec has been commented out.
1 INCLUDEDIRS ?= -I.. -I. -I./{marci,jacint,alpar,klao,akos}
2 CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic
4 BINARIES ?= bin_heap_demo
6 # Hat, ez elismerem, hogy nagyon ronda, de mukodik minden altalam
7 # ismert rendszeren :-) (Misi)
11 CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
24 # Minden binarishoz egy sor, felsorolva, hogy mely object file-okbol
26 # Kiveve ha siman file.cc -> file esetrol van szo, amikor is nem kell
29 #proba: proba.o seged.o
35 -$(CXX) $(CXXFLAGS) -M $(BINARIES:=.cc) > .depend
41 $(RM) *.o $(BINARIES) .depend
43 .PHONY: all clean dep depend