예제 #1
0
		public void TestHashCode()
		{
			ComplexFloatVector a = new ComplexFloatVector(2);
			a[0] = (ComplexFloat)0;
			a[1] = (ComplexFloat)1;

			int hash = a.GetHashCode();
			Assert.AreEqual(hash, 1);
		}