b2api
B2000++ API Reference Manual, VERSION 4.6
 
Loading...
Searching...
No Matches
b2graph.H
1//------------------------------------------------------------------------
2// b2graph.H --
3//
4//
5// written by Mathias Doreille
6//
7// Copyright (c) 2008-2012 SMR Engineering & Development SA
8// 2502 Bienne, Switzerland
9//
10// All Rights Reserved. Proprietary source code. The contents of
11// this file may not be disclosed to third parties, copied or
12// duplicated in any form, in whole or in part, without the prior
13// written permission of SMR.
14//------------------------------------------------------------------------
15
16#ifndef B2GRAPH_H_
17#define B2GRAPH_H_
18
19#include <cstddef>
20#include <utility>
21
22#include "b2ppconfig.h"
23
24namespace b2000 {
25
26void mlevel_nested_dissection_with_separator(
27 const size_t n, const size_t* xadj, const size_t* adjncy, const int nlevel,
28 size_t* inv_permutation, std::pair<size_t, size_t>* tree);
29
30}
31
32#endif /*B2GRAPH_H_*/
Contains the base classes for implementing Finite Elements.
Definition b2boundary_condition.H:32