Package net.algart.math.patterns

Examples of net.algart.math.patterns.TooManyPointsInPatternError


            // - to avoid changing by parallel threads
            checkArguments(dest, src, additionalMatrices, pattern);
            final long pointCount = pattern.pointCount();
            if (pointCount > 1) {
                if (pointCount > Integer.MAX_VALUE)
                    throw new TooManyPointsInPatternError("Too large number of points in the pattern: "
                        + pointCount + " > Integer.MAX_VALUE");
                // There is an analogous requirement in the usual branch in RankOperationProcessor:
                // we build a Java array of all pattern points, so it is impossible to process more
                // than Integer.MAX_VALUE points.
                // In this branch, it is theoretically possible to process up to Long.MAX_VALUE points,
View Full Code Here

TOP

Related Classes of net.algart.math.patterns.TooManyPointsInPatternError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.