-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathtest2d_i.c
119 lines (89 loc) · 2.87 KB
/
test2d_i.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// gcc -Wall -Wextra test2d_i.c -Xlinker -rpath=../lib
// -L ../lib -ljigsaw -o test2d_i
// Use MARCHE to set "gradient-limits" on mesh-spacing data
//
// ensures: |GRAD(h)| <= slope_limit(x),
//
// via a "fast-marching" solver for the Hamilton-Jacobi eq.
# include "../inc/lib_jigsaw.h"
# include "print.h"
# include "stdio.h"
int test2d_i (int _verb)
{
int _retv = 0;
/*-------------------------------- setup JIGSAW types */
jigsaw_jig_t _jjig ;
jigsaw_init_jig_t(&_jjig) ;
jigsaw_msh_t _hfun ;
jigsaw_init_msh_t(&_hfun) ;
/*
--------------------------------------------------------
* JIGSAW's "mesh" is a piecewise linear complex:
--------------------------------------------------------
*
* v:3 o---------------o v:2
* | \ t:2 / |
* | \ / |
* | \ 4 / |
* | t:3 o t:1 |
* | / \ |
* | / \ |
* | / t:0 \ |
* v:0 o---------------o v:1
*
--------------------------------------------------------
*/
jigsaw_VERT2_t _hfun_vert2[5] = { // setup hfun.
{ {0., 0.}, +0 } ,
{ {1., 0.}, +0 } ,
{ {1., 1.}, +0 } ,
{ {0., 1.}, +0 } ,
{ {.5, .5}, +0 }
} ;
jigsaw_TRIA3_t _hfun_tria3[4] = {
{ {+0, +1, +4}, +0 } ,
{ {+1, +2, +4}, +0 } ,
{ {+2, +3, +4}, +0 } ,
{ {+3, +0, +4}, +0 }
} ;
fp32_t _hfun_value[5] = {
2.f, 2.f, 2.f, 2.f, 1.f
} ;
fp32_t _hfun_slope[1] = {
.1f
} ;
_hfun._flags
= JIGSAW_EUCLIDEAN_MESH;
_hfun._vert2._data = &_hfun_vert2[0] ;
_hfun._vert2._size = +5 ;
_hfun._tria3._data = &_hfun_tria3[0] ;
_hfun._tria3._size = +4 ;
_hfun._value._data = &_hfun_value[0] ;
_hfun._value._size = +5 ;
_hfun._slope._data = &_hfun_slope[0] ;
_hfun._slope._size = +1 ;
/*-------------------------------- build MARCHE hfun. */
_jjig._verbosity = _verb;
_retv = marche (
& _jjig , // the config. opts
& _hfun ) ; // the spacing h(x)
/*-------------------------------- print MARCHE hfun. */
if (_verb > 0 )
{
printf("\n VALUE: \n\n") ;
for (size_t _ipos = +0;
_ipos != _hfun._value._size ;
++_ipos )
{
printf("%1.4f\n",
_hfun._value._data[_ipos]
) ;
}
}
printf (
"[2d_i] MARCHE returned code : %d \n", _retv) ;
return _retv ;
}
# ifndef __SKIP_MAIN__
int main () { return test2d_i(1) ; }
# endif//__SKIP_MAIN__