Exemple #1
0
        public void FTest()
        {
            BackPropagationThreeLayers target = new BackPropagationThreeLayers(); // TODO: Initialize to an appropriate value
            double x        = 0F;                                                 // TODO: Initialize to an appropriate value
            double expected = 0F;                                                 // TODO: Initialize to an appropriate value
            double actual;

            actual = target.F(x);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }