Package cu.repsystestbed.graphs

Examples of cu.repsystestbed.graphs.ReputationEdgeFactory


    BasicConfigurator.configure();
   
    Hashtable<String, Object> storage = new Hashtable<String, Object>();
    storage.put("fhg", new FeedbackHistoryGraph(new FeedbackHistoryEdgeFactory()));
    storage.put("et", new EigenTrust());
    storage.put("rg", new ReputationGraph(new ReputationEdgeFactory()));
    storage.put("as", new Appleseed());
    storage.put("rk", new RankbasedTrustAlg());
    storage.put("tg", new TrustGraph(new TrustEdgeFactory()));
   
    WorkflowParser2 parser = new WorkflowParser2("rg>as>rg", storage);
View Full Code Here


      return new FeedbackHistoryGraph(new FeedbackHistoryEdgeFactory());
     
    }
    else if(graphType.equalsIgnoreCase(REPUTATIONGRAPH))
    {
      return new ReputationGraph(new ReputationEdgeFactory());
     
    }
    else if(graphType.equalsIgnoreCase(TRUSTGRAPH))
    {
      return new TrustGraph(new TrustEdgeFactory());
View Full Code Here

TOP

Related Classes of cu.repsystestbed.graphs.ReputationEdgeFactory

Copyright © 2018 www.massapicom. 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.