Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Derivation.java « ghgd « statmt « org « attempt1 « hypergraph-prototype - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f142fa4a293439e466690d6b618441ef8895c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.statmt.ghgd;

public class Derivation implements Comparable<Derivation> {

	And hyperArc;
	int[] positions;
	public Derivation(And hyperArc, int[] positions) {
		this.hyperArc = hyperArc;
		this.positions = positions;
	}
	public int compareTo(Derivation o) {
		return 0;
	}
	
}