function GraphArc(node, weight) {
	this.node = node;
	this.weight = weight;

};
