Skip to content

Master’s Thesis: Parallel Variable Gapped Longest Common Sequence and Incremental Range Maximum Query

License

Notifications You must be signed in to change notification settings

morris821028/parallel-VGLCS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Parallel VGLCS

Parallel Variable Gapped Longest Common Sequence (Parallel-VGLCS)

Usage

#include "VGLCS.h"
...

int main() {
...

#define MAXN 5005
	char A[MAXN], B[MAXN];
    short GA[MAXN], GB[MAXN];
    int nA, nB;
	int lcs_len = serial_VGLCS(nA, A, GA, nB, B, GB);
	// parallel version
	// int lcs_len = parallel_VGLCS(nA, A, GA, nB, B, GB);

...
}

Run Test

make
./unit

Run in Debug Mode

make DEBUG=1
./unit

About

Master’s Thesis: Parallel Variable Gapped Longest Common Sequence and Incremental Range Maximum Query

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published