Beispiel #1
0
func TestLowBound(t *testing.T) {
	x := real.Vector{1, 3}
	x.LowBound(2)
	if x[0] != 2 || x[1] != 3 {
		t.Fail()
	}
}