X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FAmbiguous.java;h=1acd8cd19ec85cc948513746241db7929c9c99ef;hb=111166986ad83b54d0cae5c03c2304d23e332f29;hp=c96bdd4e5bee8581a4f223998c621bf2bc593b25;hpb=41b74cd8469abb0bdff811f26594a7ef87cb26a6;p=sbp.git diff --git a/src/edu/berkeley/sbp/Ambiguous.java b/src/edu/berkeley/sbp/Ambiguous.java index c96bdd4..1acd8cd 100644 --- a/src/edu/berkeley/sbp/Ambiguous.java +++ b/src/edu/berkeley/sbp/Ambiguous.java @@ -7,18 +7,25 @@ import java.util.*; /** if ambiguity checking is enabled, this exception is thrown to signal that the parse was ambiguous */ public class Ambiguous extends Exception { - public final Forest ambiguity; - public Ambiguous(Forest ambiguity) { this.ambiguity = ambiguity; } + final Forest ambiguity; + private final HashSet> ht; + Ambiguous(Forest ambiguity, HashSet> ht) { + this.ambiguity = ambiguity; + this.ht = ht; + } + + public Forest getAmbiguity() { return ambiguity; } + public String toString() { - // FEATURE: more legible printout desperately needed + // FIXME: print the input region that was ambiguously matched StringBuffer sb = new StringBuffer(); - sb.append("unresolved ambiguity "); - /* - for(Tree result : ambiguity.expand(false)) { - sb.append("\n\n"); - result.toPrettyString(sb); + sb.append("unresolved ambiguity; shared subtrees are shown as \"*\" "); + for(Tree result : ht) { + sb.append("\n possibility: "); + StringBuffer sb2 = new StringBuffer(); + result.toPrettyString(sb2); + sb.append(StringUtil.indent(sb2.toString(), 15)); } - */ return sb.toString(); } }