OpenCog Framework  Branch: master, revision 6f0b7fc776b08468cf1b74aa9db028f387b4f0c0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
FuzzyPatternMatch.h
Go to the documentation of this file.
1 /*
2  * FuzzyPatternMatch.h
3  *
4  * Copyright (C) 2015 OpenCog Foundation
5  *
6  * Author: Leung Man Hin <https://github.com/leungmanhin>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Affero General Public License v3 as
10  * published by the Free Software Foundation and including the exceptions
11  * at http://opencog.org/wiki/Licenses
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU Affero General Public License
19  * along with this program; if not, write to:
20  * Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23 
24 #ifndef FUZZYPATTERNMATCH_H
25 #define FUZZYPATTERNMATCH_H
26 
27 namespace opencog
28 {
29  class AtomSpace;
30  Handle find_approximate_match(AtomSpace*, const Handle&,
31  Type rtn_type = 0,
32  const HandleSeq& excl_list = {});
33 };
34 
35 #endif // FUZZYPATTERNMATCH_H
std::vector< Handle > HandleSeq
a list of handles
Definition: Handle.h:246
unsigned short Type
type of Atoms, represented as short integer (16 bits)
Definition: types.h:40
Handle find_approximate_match(AtomSpace *, const Handle &, Type rtn_type=0, const HandleSeq &excl_list={})