int main()
{
	int Error = 0;

	Error += test_mat3x3();
	Error += test_operators();

	return Error;
}
예제 #2
0
int main()
{
	int Error = 0;

	Error += cast::test();
	Error += test_ctr();
	Error += test_mat3x3();
	Error += test_operators();
	Error += test_inverse();

	return Error;
}