edu.mines.jtk.lapack.LapackInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edu-mines-jtk Show documentation
Show all versions of edu-mines-jtk Show documentation
Java packages for science and engineering
The newest version!
/****************************************************************************
Copyright 2010, Colorado School of Mines and others.
Licensed 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 edu.mines.jtk.lapack;
import org.netlib.util.intW;
/**
* Info output parameter for most LAPACK methods.
* For internal use only.
* @author Dave Hale, Colorado School of Mines
* @version 2010.12.26
*/
class LapackInfo extends intW {
LapackInfo() {
super(0);
}
void check(String name) {
if (val<0) {
throw new IllegalArgumentException(
"LAPACK "+name+": error in argument number "+(-val));
}
}
int get(String name) {
check(name);
return val;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy