AIMA.Core.Environment.Map.ExtendableMap.removeBidirectionalLink C# (CSharp) Method

removeBidirectionalLink() public method

public removeBidirectionalLink ( String fromLocation, String toLocation ) : void
fromLocation String
toLocation String
return void
	public void removeBidirectionalLink(String fromLocation, String toLocation) {
		links.remove(fromLocation, toLocation);
		links.remove(toLocation, fromLocation);
	}