blob: 5cd0c167ea5887b3b83d61243f10397ce5621525 [file] [log] [blame]
package joshua.decoder.phrase;
public class ChartState {
public Left left;
public Right right;
public ChartState() {
left = new Left();
right = new Right();
}
}