コード例 #1
0
        public void TestCopy()
        {
            MathFunctionsTest test = new MathFunctionsTest(EngineParameter.Engine.CAFFE);

            try
            {
                foreach (IMathFunctionsTest t in test.Tests)
                {
                    t.TestCopy();
                }
            }
            finally
            {
                test.Dispose();
            }
        }
コード例 #2
0
        public void TestMinMaxVecNonZero()
        {
            MathFunctionsTest test = new MathFunctionsTest(EngineParameter.Engine.CAFFE);

            try
            {
                foreach (IMathFunctionsTest t in test.Tests)
                {
                    t.TestMinMaxVec(5, true);
                }
            }
            finally
            {
                test.Dispose();
            }
        }