Exemple #1
0
        public static void TestIntegerRem()
        {
            List <(int aValue, int Result)> testValues = new List <(int aValue, int Result)>
            {
                (-3, -3), (-2, -2), (-1, -1), (0, 0), (1, 1), (2, 2), (3, 3)
            };
            const int n = 26;

            testValues.ForEach(tuple => {
                Print($"Testing Mathematic.Integer.rem({tuple.aValue}, {n}) == {tuple.Result} - {FMI.rem(tuple.aValue, n) == tuple.Result}");
            });
        }
Exemple #2
0
        static void TestIntegerMod()
        {
            List <(int aValue, int Result)> testValues = new List <(int aValue, int Result)>
            {
                (-3, 23), (-2, 24), (-1, 25), (0, 0), (1, 1), (2, 2), (3, 3)
            };
            const int n = 26;

            testValues.ForEach(tuple => {
                Print($"Testing Mathematic.Integer.mod({tuple.aValue}, {n}) == {tuple.Result} - {FMI.mod(tuple.aValue, n) == tuple.Result}");
            });
        }