id summary reporter owner description type status milestone component version severity resolution keywords cc 13328 "transitive_reduction.hpp in the Graph component contains two lines that use ""not"" instead of ""!""" cjfred01@… Jeremiah Willcock "Lines 108 and 110 of graph/transitive_reduction.hpp (current as of Boost 1.65.1) include expressions represent logical negation via the word ""not"" rather than the correct ""!"". As expected, this causes a compilation error. None of the other Graph template/header files have this issue, as far as I could tell, so I don't believe it's simply failing to include a header that sets ""#define not !"". Currently, in order to use transitive_reduction.hpp, one must define that macro in their source file before including the header, and that should not be necessary. The simple solution, of course, is to change ""not"" to ""!"" in those two locations. The altered lines read as follows: 108: if( ! edge_in_closure[i][j] ) { 110: if( ! edge_in_closure[i][k] ) { " Bugs new To Be Determined graph Boost 1.65.0 Problem transitive reduction not negation