コード例 #1
0
ファイル: Qos.java プロジェクト: edm92/TextSeer
  public Qos copy() {
    Qos _result = new Qos();

    _result.COST = COST;
    _result.TIME = TIME;
    _result.SKILL = SKILL;
    _result.UTILITY = UTILITY;

    return _result;
  }
コード例 #2
0
ファイル: Qos.java プロジェクト: edm92/TextSeer
  // Pairwise Acc
  public Qos pairwise_acc(Qos source, Qos target, JSONEFFECT _src, JSONEFFECT _trg) {
    Qos _result = new Qos();

    // Process the goals to check which objective functions we're using
    HashSet<String> goals = new HashSet<String>();
    for (String s : _src.GOAL) {
      goals.add(s);
    }
    for (String s : _trg.GOAL) {
      goals.add(s);
    }

    // Handle Cost Accumulation
    PREF_FUNC costPref = null;
    if (goals.contains("MINPRICE")) {
      costPref = new MIN_COST();
    } else {
      costPref = new MAX_COST();
    }

    // Handle Time Preferences
    PREF_FUNC timePref = null;
    if (goals.contains("MINTIME")) {
      timePref = new MIN_TIME();
    } else {
      timePref = new MAX_TIME();
    }

    // Handle Skill Accumulation
    PREF_FUNC skillPref = null;
    if (goals.contains("MINSKILL")) {
      skillPref = new MIN_SKILL();
    } else {
      skillPref = new MAX_SKILL();
    }

    // Handle Utility Accumulation
    PREF_FUNC utilityPref = null;
    utilityPref = new MAX_COST();

    _result.COST = costPref.combine(source.COST, target.COST);
    _result.TIME = timePref.combine(source.TIME, target.TIME);
    _result.SKILL = skillPref.combine(source.SKILL, target.SKILL);
    _result.UTILITY =
        utilityPref.compare(source.UTILITY, target.UTILITY) ? source.UTILITY : target.UTILITY;

    return _result;
  }
コード例 #3
0
ファイル: Qos.java プロジェクト: edm92/TextSeer
  /** Test Functions */
  public static void main(String[] args) {
    JSONEFFECT _a = new JSONEFFECT();
    JSONEFFECT _b = new JSONEFFECT();
    Qos n = new Qos();
    _b.GOAL = new String[] {"MINPRICE", "MINTIME", "MINSKILL"};

    _a.QOS.COST = "$10";
    _a.QOS.TIME = "PT10M";
    _a.QOS.SKILL = "MED";

    _b.QOS.COST = "$20";
    _b.QOS.TIME = "PT20M";
    _b.QOS.SKILL = "HIGH";

    n = n.pairwise_acc(_a.QOS, _b.QOS, _a, _b);
    a.e.println(n.toString());
  }