Table of Contents
this module contains a graph class that provides a minimalistic graph implementation suitable for analysis of chemical problems
filter_off_dependent_cycles ( cycles )
this filtres off all cycles that are combinations of two smaller cycles. I don't want to go deeper (3 cycles) - it would be really slow and ugly
filter_off_supercycles ( cycles )
filtres off all the bigger cycles which completely contain any of smaller cycles; these should be dependent
get_first_closer_by_one ( v )
get_path_down_to ( end, start )
get_paths_down_to ( end, start )
is_ring_end_vertex ( v )
is_ring_start_vertex ( v )
is_there_a_ring_between ( start, end )
graph
provides a minimalistic graph implementation suitable for analysis of chemical problems,