Examples of ErlangLabel


Examples of statechum.analysis.Erlang.ErlangLabel

                      {
                        text.append("<font color="+color+">");text.append(lbl.toString());
                      }
                      else
                      {
                        ErlangLabel l = (ErlangLabel)lbl;
                        text.append("<font color=blue>");text.append(l.callName);text.append("</font>,&nbsp;");
                        text.append("<font color="+color+">");text.append(l.input);text.append("</font>");
                        if (l.expectedOutput != null)
                        {
                          text.append(",&nbsp;<font color=black>");text.append(l.expectedOutput);text.append("</font>");
View Full Code Here

Examples of statechum.analysis.Erlang.ErlangLabel

                      {
                        text.append("<font color="+color+">");text.append(lbl.toString());
                      }
                      else
                      {
                        ErlangLabel l = (ErlangLabel)lbl;
                        text.append("<font color=blue>");text.append(l.callName);text.append("</font>,&nbsp;");
                        text.append("<font color="+color+">");text.append(l.input);text.append("</font>");
                        if (l.expectedOutput != null)
                        {
                          text.append(",&nbsp;<font color=black>");text.append(l.expectedOutput);text.append("</font>");
View Full Code Here

Examples of statechum.analysis.Erlang.ErlangLabel

      int prefixLen = outcome.answerDetails.length - 1;
      List<Label> prefix = question.subList(0, prefixLen);
      Label failedLabel = question.get(prefixLen);
      response.append("- [");
      boolean first = true;
      ErlangLabel noop = stripOutput((ErlangLabel) failedLabel);

      //assert noop.function != null : "questions do not contain function details";
      for (Label lbl : inputToPossibleOutputs.get(noop)) {
        if (!first)
          response.append(',');
View Full Code Here

Examples of statechum.analysis.Erlang.ErlangLabel

    }

  }

  public static ErlangLabel stripOutput(ErlangLabel label) {
    return new ErlangLabel(label.function, label.callName, label.input,
        null);
  }
View Full Code Here

Examples of statechum.analysis.Erlang.ErlangLabel

    for (Label lbl : question) {
      if (!(lbl instanceof ErlangLabel))
        throw new IllegalArgumentException("question element " + lbl
            + " is not of Erlang type");

      ErlangLabel erlLabel = (ErlangLabel)lbl;
     
      if (!module.getName().equals(erlLabel.function.getModuleName()))
        throw new IllegalArgumentException("current module is "+module.getName()+" but attempting to call "+erlLabel.function.getModuleName());

      if (!module.behaviour.getAlphabet().contains(lbl))
View Full Code Here

Examples of statechum.analysis.Erlang.ErlangLabel

      if (elemAti.arity() < 2 || elemAti.arity() > 3)
        throw new IllegalArgumentException("received tuple " + elemAti
            + " of invalid arity");
      if (elemAti.arity() == 3) {
        if (config.getUseErlangOutputs()) {
          answerDetails[i] = new ErlangLabel(
              questionDetails[i].function,
              questionDetails[i].callName,
              questionDetails[i].input, elemAti.elementAt(2));
        } else {
          answerDetails[i] = new ErlangLabel(
              questionDetails[i].function,
              questionDetails[i].callName,
              questionDetails[i].input);
        }
View Full Code Here

Examples of statechum.analysis.Erlang.ErlangLabel

        nextState = ErlangState.newErlangState(state, input, true);
        // System.out.println("OK : "+RPNILearner.questionToString(newTrace));
        break;
      case TRACE_DIFFERENTOUTPUT:
        assert outcome.answerDetails.length == traceLength;
        ErlangLabel nextLabel = outcome.answerDetails[traceLength - 1];
        state.rejects.add(input);// record the reject.
        if (!module.behaviour.getAlphabet().contains(nextLabel)) {
          module.behaviour.getAlphabet().add(nextLabel);
          // extend the alphabet
          // (if the input is already in the alphabet, fine, it would
View Full Code Here

Examples of statechum.analysis.Erlang.ErlangLabel

                      {
                        text.append(lbl.toString());
                      }
                      else
                      {
                        ErlangLabel l = (ErlangLabel)lbl;
                        text.append("<font color=blue>");text.append(l.callName);text.append("</font>,&nbsp;");
                        text.append("<font color=black>");text.append(l.input);text.append("</font>");
                        if (l.expectedOutput != null)
                        {
                          text.append(",&nbsp;<font color=green>");text.append(l.expectedOutput);text.append("</font>");
View Full Code Here

Examples of statechum.analysis.Erlang.ErlangLabel

        if (origLabel instanceof StringLabel)
          result = new StringLabel(prefix+origLabel);
        else
        if (origLabel instanceof ErlangLabel)
        {
          ErlangLabel oErl = (ErlangLabel)origLabel;
          result = new ErlangLabel(oErl.function,prefix+oErl.callName,
              oErl.input, oErl.expectedOutput);
        }
        else
          assert false;
       
View Full Code Here

Examples of statechum.analysis.Erlang.ErlangLabel

                      {
                        text.append("<font color="+color+">");text.append(lbl.toString());
                      }
                      else
                      {
                        ErlangLabel l = (ErlangLabel)lbl;
                        text.append("<font color=blue>");text.append(l.callName);text.append("</font>,&nbsp;");
                        text.append("<font color="+color+">");text.append(l.input);text.append("</font>");
                        if (l.expectedOutput != null)
                        {
                          text.append(",&nbsp;<font color=black>");text.append(l.expectedOutput);text.append("</font>");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.