00001 /* $Id: dsyevx_wrapper.hpp 930 2012-12-24 00:38:19Z pbelotti $ 00002 * 00003 * Name: dsyevx_wrapper.hpp 00004 * Authors: Andrea Qualizza 00005 * Pietro Belotti 00006 * Purpose: 00007 * 00008 * This file is licensed under the Eclipse Public License (EPL) 00009 */ 00010 00011 #ifndef DSYEVX_HPP 00012 #define DSYEVX_HPP 00013 00014 int dsyevx_interface (int n, double *A, int &m, 00015 double * &w, double * &z, // output values 00016 double tolerance, 00017 double lb_ev, 00018 double ub_ev, 00019 int firstidx, 00020 int lastidx); 00021 00022 #endif