Skip to content

Commit

Permalink
Transformers: Fix the comment describing NodeEliminator
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Blicha committed Jan 11, 2023
1 parent 61aae2d commit 2a541cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/transformers/NodeEliminator.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

#include "Transformer.h"



/*
* Tries to eliminate all nodes that do not have a self-loop edge
* Transformation pass that eliminates some nodes from the graph, using contraction.
*
* The predicate determining the nodes to eliminate is passed to the constructor.
*/
class NodeEliminator : public Transformer {
using predicate_t = std::function<bool(SymRef,AdjacencyListsGraphRepresentation const &, ChcDirectedHyperGraph const &)>;
Expand Down

0 comments on commit 2a541cb

Please sign in to comment.