TrustGrapher  r52
A playabale simulator for modelling trust between agents
D:/src/cu/repsystestbed/graphs/TrustEdge.java
Go to the documentation of this file.
00001 package cu.repsystestbed.graphs;
00002 
00003 import cu.repsystestbed.entities.Agent;
00004 
00005 public class TrustEdge extends TestbedEdge
00006 {
00007         public TrustEdge(Agent src, Agent sink)
00008         {
00009                 super.src = src;
00010                 super.sink = sink;
00011         }
00012 
00013 }