Couenne 0.5.8
Loading...
Searching...
No Matches
dsyevx_wrapper.hpp
Go to the documentation of this file.
1/* $Id: dsyevx_wrapper.hpp 930 2012-12-24 00:38:19Z pbelotti $
2 *
3 * Name: dsyevx_wrapper.hpp
4 * Authors: Andrea Qualizza
5 * Pietro Belotti
6 * Purpose:
7 *
8 * This file is licensed under the Eclipse Public License (EPL)
9 */
10
11#ifndef DSYEVX_HPP
12#define DSYEVX_HPP
13
14int dsyevx_interface (int n, double *A, int &m,
15 double * &w, double * &z, // output values
16 double tolerance,
17 double lb_ev,
18 double ub_ev,
19 int firstidx,
20 int lastidx);
21
22#endif
int dsyevx_interface(int n, double *A, int &m, double *&w, double *&z, double tolerance, double lb_ev, double ub_ev, int firstidx, int lastidx)