-
Notifications
You must be signed in to change notification settings - Fork 0
/
blEnumsAndConstants.hpp
35 lines (23 loc) · 1.08 KB
/
blEnumsAndConstants.hpp
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
#ifndef BL_ENUMSANDCONSTANTS_HPP
#define BL_ENUMSANDCONSTANTS_HPP
//-------------------------------------------------------------------
// NOTE: These constants and enums are defined within the
// blAlgorithmsLIB namespace
//-------------------------------------------------------------------
namespace blAlgorithmsLIB
{
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// Enum used to decide how to advance iterators
// for matrix iterators defined in this library
//-------------------------------------------------------------------
enum blAdvancingIteratorMethod {COL_MAJOR = 0,
ROW_MAJOR = 1,
COL_PAGE_MAJOR = 2,
ROW_PAGE_MAJOR = 3};
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// End of namespace
}
//-------------------------------------------------------------------
#endif // BL_ENUMSANDCONSTANTS_HPP