mirror of https://github.com/jlizier/jidt
150 lines
5.4 KiB
Java
150 lines
5.4 KiB
Java
/*
|
|
* Java Information Dynamics Toolkit (JIDT)
|
|
* Copyright (C) 2017, Joseph T. Lizier
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* This class was originally distributed as part of the Apache Commons
|
|
* Math3 library (3.6.1), under the Apache License Version 2.0, which is
|
|
* copied below. This Apache 2 software is now included as a derivative
|
|
* work in the GPLv3 licensed JIDT project, as per:
|
|
* http://www.apache.org/licenses/GPL-compatibility.html
|
|
*
|
|
* The original Apache source code has been modified as follows:
|
|
* -- We have modified package names to sit inside the JIDT structure.
|
|
*/
|
|
|
|
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership.
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
* (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package infodynamics.utils.commonsmath3.exception;
|
|
|
|
import infodynamics.utils.commonsmath3.util.MathArrays;
|
|
import infodynamics.utils.commonsmath3.exception.util.LocalizedFormats;
|
|
|
|
/**
|
|
* Exception to be thrown when the a sequence of values is not monotonically
|
|
* increasing or decreasing.
|
|
*
|
|
* @since 2.2 (name changed to "NonMonotonicSequenceException" in 3.0)
|
|
*/
|
|
public class NonMonotonicSequenceException extends MathIllegalNumberException {
|
|
/** Serializable version Id. */
|
|
private static final long serialVersionUID = 3596849179428944575L;
|
|
/**
|
|
* Direction (positive for increasing, negative for decreasing).
|
|
*/
|
|
private final MathArrays.OrderDirection direction;
|
|
/**
|
|
* Whether the sequence must be strictly increasing or decreasing.
|
|
*/
|
|
private final boolean strict;
|
|
/**
|
|
* Index of the wrong value.
|
|
*/
|
|
private final int index;
|
|
/**
|
|
* Previous value.
|
|
*/
|
|
private final Number previous;
|
|
|
|
/**
|
|
* Construct the exception.
|
|
* This constructor uses default values assuming that the sequence should
|
|
* have been strictly increasing.
|
|
*
|
|
* @param wrong Value that did not match the requirements.
|
|
* @param previous Previous value in the sequence.
|
|
* @param index Index of the value that did not match the requirements.
|
|
*/
|
|
public NonMonotonicSequenceException(Number wrong,
|
|
Number previous,
|
|
int index) {
|
|
this(wrong, previous, index, MathArrays.OrderDirection.INCREASING, true);
|
|
}
|
|
|
|
/**
|
|
* Construct the exception.
|
|
*
|
|
* @param wrong Value that did not match the requirements.
|
|
* @param previous Previous value in the sequence.
|
|
* @param index Index of the value that did not match the requirements.
|
|
* @param direction Strictly positive for a sequence required to be
|
|
* increasing, negative (or zero) for a decreasing sequence.
|
|
* @param strict Whether the sequence must be strictly increasing or
|
|
* decreasing.
|
|
*/
|
|
public NonMonotonicSequenceException(Number wrong,
|
|
Number previous,
|
|
int index,
|
|
MathArrays.OrderDirection direction,
|
|
boolean strict) {
|
|
super(direction == MathArrays.OrderDirection.INCREASING ?
|
|
(strict ?
|
|
LocalizedFormats.NOT_STRICTLY_INCREASING_SEQUENCE :
|
|
LocalizedFormats.NOT_INCREASING_SEQUENCE) :
|
|
(strict ?
|
|
LocalizedFormats.NOT_STRICTLY_DECREASING_SEQUENCE :
|
|
LocalizedFormats.NOT_DECREASING_SEQUENCE),
|
|
wrong, previous, Integer.valueOf(index), Integer.valueOf(index - 1));
|
|
|
|
this.direction = direction;
|
|
this.strict = strict;
|
|
this.index = index;
|
|
this.previous = previous;
|
|
}
|
|
|
|
/**
|
|
* @return the order direction.
|
|
**/
|
|
public MathArrays.OrderDirection getDirection() {
|
|
return direction;
|
|
}
|
|
/**
|
|
* @return {@code true} is the sequence should be strictly monotonic.
|
|
**/
|
|
public boolean getStrict() {
|
|
return strict;
|
|
}
|
|
/**
|
|
* Get the index of the wrong value.
|
|
*
|
|
* @return the current index.
|
|
*/
|
|
public int getIndex() {
|
|
return index;
|
|
}
|
|
/**
|
|
* @return the previous value.
|
|
*/
|
|
public Number getPrevious() {
|
|
return previous;
|
|
}
|
|
}
|