Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92011414
compute_boundary.cc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 16, 14:44
Size
621 B
Mime Type
text/x-c
Expires
Mon, Nov 18, 14:44 (2 d)
Engine
blob
Format
Raw Data
Handle
22346820
Attached To
R9316 Omid_Ashtari
compute_boundary.cc
View Options
#include "compute_boundary.hh"
/* -------------------------------------------------------------------------- */
ComputeBoundary
::
ComputeBoundary
(
const
Vector
&
xmin
,
const
Vector
&
xmax
)
:
xmin
(
xmin
),
xmax
(
xmax
)
{
Vector
d
=
xmax
-
xmin
;
for
(
UInt
i
=
0
;
i
<
Vector
::
dim
;
++
i
)
if
(
d
[
i
]
<
0
)
{
std
::
cout
<<
"XMax and XMin do not form a domain range"
<<
std
::
endl
;
std
::
exit
(
1
);
}
}
/* -------------------------------------------------------------------------- */
void
ComputeBoundary
::
compute
(
System
&
system
)
{
}
/* -------------------------------------------------------------------------- */
Event Timeline
Log In to Comment