Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
SetCompare.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <alib/set>
9
10namespace compare {
11
13public:
14 template < class T >
15 static bool compare ( const ext::set < T > & a, const ext::set < T > & b ) {
16 return a == b;
17 }
18};
19
20} /* namespace compare */
21
Definition: SetCompare.h:12
static bool compare(const ext::set< T > &a, const ext::set< T > &b)
Definition: SetCompare.h:15
Definition: set.hpp:44
Definition: AutomatonCompare.h:29