Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
TreeCompare.h
Go to the documentation of this file.
1
6#pragma once
7
9
10namespace compare {
11
13public:
14 template < class SymbolType >
16 return a == b;
17 }
18};
19
20} /* namespace compare */
21
Definition: TreeCompare.h:12
static bool compare(const tree::RankedTree< SymbolType > &a, const tree::RankedTree< SymbolType > &b)
Definition: TreeCompare.h:15
Tree structure represented in its natural representation. The representation is so called ranked,...
Definition: RankedTree.h:72
Definition: AutomatonCompare.h:29