Replace Progs/RNAalifold with x64 binary and add all other programs
[jabaws.git] / binaries / src / ViennaRNA / H / mm.h
1 #ifndef __VIENNA_RNA_PACKAGE_MM_H__
2 #define __VIENNA_RNA_PACKAGE_MM_H__
3
4 /**
5  *  \file mm.h
6  *  \brief Several Maximum Matching implementations
7  *
8  *  This file contains the declarations for several maximum matching implementations
9  */
10
11
12 unsigned int  maximumMatching(const char *string);
13
14 unsigned int *maximumMatchingConstraint(const char *string,
15                                         short *ptable);
16
17 unsigned int *maximumMatching2Constraint( const char *string,
18                                           short *ptable,
19                                           short *ptable2);
20
21 #endif