SoPlex Doxygen Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
src
spxdefaultrt.h
Go to the documentation of this file.
1
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2
/* */
3
/* This file is part of the class library */
4
/* SoPlex --- the Sequential object-oriented simPlex. */
5
/* */
6
/* Copyright (C) 1996-2012 Konrad-Zuse-Zentrum */
7
/* fuer Informationstechnik Berlin */
8
/* */
9
/* SoPlex is distributed under the terms of the ZIB Academic Licence. */
10
/* */
11
/* You should have received a copy of the ZIB Academic License */
12
/* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
13
/* */
14
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15
16
/**@file spxdefaultrt.h
17
* @brief Textbook ratio test for SoPlex.
18
*/
19
#ifndef _SPXDEFAULTRT_H_
20
#define _SPXDEFAULTRT_H_
21
22
23
#include <assert.h>
24
25
#include "
spxdefines.h
"
26
#include "
spxratiotester.h
"
27
28
namespace
soplex
29
{
30
31
/**@brief Textbook ratio test for SoPlex.
32
@ingroup Algo
33
34
Class SPxDefaultRT provides an implementation of the textbook ratio test
35
as a derived class of SPxRatioTester. This class is not intended for
36
reliably solving LPs (even though it does the job for ``numerically simple''
37
LPs). Instead, it should serve as a demonstration of how to write ratio
38
tester classes.
39
40
See SPxRatioTester for a class documentation.
41
*/
42
class
SPxDefaultRT
:
public
SPxRatioTester
43
{
44
public
:
45
46
//-------------------------------------
47
/**@name Construction / destruction */
48
//@{
49
/// default constructor
50
SPxDefaultRT
()
51
:
SPxRatioTester
(
"Default"
)
52
{}
53
/// copy constructor
54
SPxDefaultRT
(
const
SPxDefaultRT
& old)
55
:
SPxRatioTester
(old)
56
{}
57
/// assignment operator
58
SPxDefaultRT
&
operator=
(
const
SPxDefaultRT
& rhs)
59
{
60
if
(
this
!= &rhs)
61
{
62
SPxRatioTester::operator=
(rhs);
63
}
64
65
return
*
this
;
66
}
67
/// destructor
68
virtual
~SPxDefaultRT
()
69
{}
70
/// clone function for polymorphism
71
inline
virtual
SPxRatioTester
*
clone
()
const
72
{
73
return
new
SPxDefaultRT
(*
this
);
74
}
75
//@}
76
77
//-------------------------------------
78
/**@name Select enter/leave */
79
//@{
80
///
81
virtual
int
selectLeave
(
Real
& val,
SPxId
);
82
///
83
virtual
SPxId
selectEnter
(
Real
& val,
int
);
84
};
85
86
}
// namespace soplex
87
#endif // _SPXDEFAULTRT_H_
88
89
//-----------------------------------------------------------------------------
90
//Emacs Local Variables:
91
//Emacs mode:c++
92
//Emacs c-basic-offset:3
93
//Emacs tab-width:8
94
//Emacs indent-tabs-mode:nil
95
//Emacs End:
96
//-----------------------------------------------------------------------------
© 2003-2013 by Zuse Institute Berlin (ZIB),
Imprint
Generated on Wed Jan 9 2013 for SoPlex by
doxygen