main page
modules
namespaces
classes
files
Gecode home
Generated on Thu Jan 31 2019 20:56:32 for Gecode by
doxygen
1.8.15
gecode
int
exception.hpp
Go to the documentation of this file.
1
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
2
/*
3
* Main authors:
4
* Christian Schulte <schulte@gecode.org>
5
*
6
* Copyright:
7
* Christian Schulte, 2004
8
*
9
* Last modified:
10
* $Date: 2015-10-29 14:09:11 +0100 (Thu, 29 Oct 2015) $ by $Author: schulte $
11
* $Revision: 14818 $
12
*
13
* This file is part of Gecode, the generic constraint
14
* development environment:
15
* http://www.gecode.org
16
*
17
* Permission is hereby granted, free of charge, to any person obtaining
18
* a copy of this software and associated documentation files (the
19
* "Software"), to deal in the Software without restriction, including
20
* without limitation the rights to use, copy, modify, merge, publish,
21
* distribute, sublicense, and/or sell copies of the Software, and to
22
* permit persons to whom the Software is furnished to do so, subject to
23
* the following conditions:
24
*
25
* The above copyright notice and this permission notice shall be
26
* included in all copies or substantial portions of the Software.
27
*
28
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
*
36
*/
37
38
namespace
Gecode
{
namespace
Int {
39
46
48
class
GECODE_INT_EXPORT
OutOfLimits
:
public
Exception
{
49
public
:
51
OutOfLimits
(
const
char
*
l
);
52
};
53
55
class
GECODE_INT_EXPORT
NotZeroOne
:
public
Exception
{
56
public
:
58
NotZeroOne
(
const
char
*
l
);
59
};
60
61
63
class
GECODE_INT_EXPORT
VariableEmptyDomain
:
public
Exception
{
64
public
:
66
VariableEmptyDomain
(
const
char
*
l
);
67
};
68
70
class
GECODE_INT_EXPORT
TooFewArguments
:
public
Exception
{
71
public
:
73
TooFewArguments
(
const
char
*
l
);
74
};
75
77
class
GECODE_INT_EXPORT
ArgumentSizeMismatch
:
public
Exception
{
78
public
:
80
ArgumentSizeMismatch
(
const
char
*
l
);
81
};
82
84
class
GECODE_INT_EXPORT
ArgumentSame
:
public
Exception
{
85
public
:
87
ArgumentSame
(
const
char
*
l
);
88
};
89
91
class
GECODE_INT_EXPORT
UnknownRelation
:
public
Exception
{
92
public
:
94
UnknownRelation
(
const
char
*
l
);
95
};
96
98
class
GECODE_INT_EXPORT
UnknownOperation
:
public
Exception
{
99
public
:
101
UnknownOperation
(
const
char
*
l
);
102
};
103
105
class
GECODE_INT_EXPORT
IllegalOperation
:
public
Exception
{
106
public
:
108
IllegalOperation
(
const
char
*
l
);
109
};
110
112
class
GECODE_INT_EXPORT
UnknownBranching
:
public
Exception
{
113
public
:
115
UnknownBranching
(
const
char
*
l
);
116
};
117
119
class
GECODE_INT_EXPORT
UnknownReifyMode
:
public
Exception
{
120
public
:
122
UnknownReifyMode
(
const
char
*
l
);
123
};
124
126
class
GECODE_INT_EXPORT
ValOfUnassignedVar
:
public
Exception
{
127
public
:
129
ValOfUnassignedVar
(
const
char
*
l
);
130
};
131
133
class
GECODE_INT_EXPORT
NotYetFinalized
:
public
Exception
{
134
public
:
136
NotYetFinalized
(
const
char
*
l
);
137
};
138
140
class
GECODE_INT_EXPORT
LDSBUnbranchedVariable
:
public
Exception
{
141
public
:
143
LDSBUnbranchedVariable
(
const
char
*
l
);
144
};
145
147
class
GECODE_INT_EXPORT
LDSBBadValueSelection
:
public
Exception
{
148
public
:
150
LDSBBadValueSelection
(
const
char
*
l
);
151
};
152
154
155
}}
156
157
// STATISTICS: int-other
158
l
NNF * l
Left subtree.
Definition:
bool-expr.cpp:244
Gecode::Int::OutOfLimits
Exception: Value out of limits
Definition:
exception.hpp:48
Gecode::Int::TooFewArguments
Exception: Too few arguments available in argument array
Definition:
exception.hpp:70
Gecode::Int::UnknownOperation
Exception: Unknown operation passed as argument
Definition:
exception.hpp:98
Gecode::Int::NotYetFinalized
Exception: Tuple set not yet finalized
Definition:
exception.hpp:133
Gecode::Int::UnknownRelation
Exception: Unknown relation passed as argument
Definition:
exception.hpp:91
Gecode::Int::UnknownBranching
Exception: Unknown value or variable selection passed as argument
Definition:
exception.hpp:112
Gecode::Int::VariableEmptyDomain
Exception: Variable created with empty domain
Definition:
exception.hpp:63
Gecode::Int::IllegalOperation
Exception: Illegal operation passed as argument
Definition:
exception.hpp:105
Gecode::Int::LDSBUnbranchedVariable
Exception: Variable in symmetry not branched on
Definition:
exception.hpp:140
Gecode::Int::LDSBBadValueSelection
Exception: Value selection incompatible with LDSB
Definition:
exception.hpp:147
Gecode::Int::ValOfUnassignedVar
Exception: Attempt to access value of unassigned variable
Definition:
exception.hpp:126
Gecode::Exception
Exception: Base-class for exceptions
Definition:
exception.hpp:46
Gecode::Int::ArgumentSame
Exception: Arguments contain same variable multiply
Definition:
exception.hpp:84
Gecode::Int::NotZeroOne
Exception: Not 0/1 integer
Definition:
exception.hpp:55
Gecode::Int::UnknownReifyMode
Exception: Unknown reification mode passed as argument
Definition:
exception.hpp:119
Gecode
Gecode toplevel namespace
GECODE_INT_EXPORT
#define GECODE_INT_EXPORT
Definition:
int.hh:81
Gecode::Int::ArgumentSizeMismatch
Exception: Arguments are of different size
Definition:
exception.hpp:77