bool operator==( Aresta &A ){
							
							return (this->custo == A.getCusto());

						}
						bool operator>( Aresta &A ){
							
							return (this->custo > A.getCusto());

						}