/**************************************************** * * * seifert.cpp: invoke the various functions * * used to compute the Seifert matrix * * * ****************************************************/ #include "link_diagram.h" void Link::make_seifert_matrix() { int i, j; find_circuits(); tree(); find_cycles(); compute_linking(); }