Chi-Tech
chi__PETScGraphPartitioner.h
Go to the documentation of this file.
1
/** \defgroup chi__PETScGraphPartitioner chi.PETScGraphPartitioner
2
3
4
\ingroup Graphs
5
PETSc based partitioning
6
7
8
## Example usage:
9
Create this object:
10
\code
11
params =
12
{
13
param_name1 = value1,
14
param_name2 = value2,
15
--etc.
16
}
17
chi.PETScGraphPartitioner.Create(params)
18
\endcode
19
## Optional Input parameters
20
\htmlonly
21
22
<div style="display: block;">
23
<button type="button" class="droppy2" style=
24
"
25
background-color: #edf0f5;
26
color: #9373A5;
27
cursor: pointer;
28
border: none;
29
text-align: left;
30
outline: none;
31
font-size: 15px;
32
margin: 2px 2px;
33
border: 2px solid #687372;
34
display: block;
35
width: 100%;
36
vertical-align: middle;
37
padding-top: 4px;
38
padding-bottom: 0px;
39
"
40
><span class="arrow" style="padding-left: 0px;">►</span><TT><B>type</B></TT><span style="color: #c4c1c0;">       The type of PETSc partitioner</span></button>
41
<div class="content" style="display: none;">
42
<p><I>type=</I><span style="color: blue;"><TT>STRING</TT></span>. The type of PETSc partitioner
43
</p>
44
<p>Default value: <TT style="color:grey">"parmetis"</TT></p>
45
</div>
46
47
</div>
48
\endhtmlonly
49
50
\htmlonly
51
52
<script>
53
54
{
55
var coll = document.getElementsByClassName("droppy2");
56
var i;
57
58
for (i = 0; i < coll.length; i++) {
59
coll[i].addEventListener("click", function() {
60
this.classList.toggle("active");
61
var content = this.nextElementSibling;
62
if (content.style.display === "block") {
63
content.style.display = "none";
64
this.childNodes[0].innerText = "►"
65
} else {
66
content.style.display = "block";
67
this.children[0].innerText = "▼"
68
}
69
});
70
}
71
}</script>
72
73
\endhtmlonly
74
75
*/
doc
generated_files
input_docs
chi__PETScGraphPartitioner.h
Generated by
1.9.3