blob: 3356bcbf96d6832040496febe5916ea17e637756 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// file: VDM.h
// update: 10/20/02
#ifndef _VDM_H
#define _VDM_H
#include <cassert>
#include <cstdlib>
#include <iostream>
#include "bigrational.h"
#include "bigrational_vector.h"
#include "bigrational_matrix.h"
using namespace std;
bigrational_vector Solve_VDM_GE(const bigrational_vector& Val,
const bigrational_vector& RHS);
#endif
|