source: branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/MatrixEntry.java @ 1558

Last change on this file since 1558 was 1558, checked in by rkrimmel, 10 years ago

new Smith waterman variant

File size: 532 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3public class MatrixEntry {
4        private float score;
5        private MatrixEntry previous;
6       
7        public MatrixEntry(float score, MatrixEntry previous)   {
8                this.score = score;
9                this.previous = previous;
10        }
11       
12        public MatrixEntry() {
13        }
14
15        public float getScore() {
16                return score;
17        }
18        public void setScore(float score) {
19                this.score = score;
20        }
21        public MatrixEntry getPrevious() {
22                return previous;
23        }
24        public void setPrevious(MatrixEntry previous) {
25                this.previous = previous;
26        }
27}
Note: See TracBrowser for help on using the repository browser.