v2DM-DOCI  1.0
EIG.h
Go to the documentation of this file.
1 /*
2  * @BEGIN LICENSE
3  *
4  * Copyright (C) 2014-2015 Ward Poelmans
5  *
6  * This file is part of v2DM-DOCI.
7  *
8  * v2DM-DOCI is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * Foobar is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with Foobar. If not, see <http://www.gnu.org/licenses/>.
20  *
21  * @END LICENSE
22  */
23 
24 #ifndef EIG_H
25 #define EIG_H
26 
27 #include <iostream>
28 
29 #include "include.h"
30 
31 namespace doci2DM
32 {
33 
34 class EIG: public BlockVector
35 {
36  public:
37 
38  EIG(BlockMatrix &);
39 
40  EIG(Container &);
41 
42  EIG(SUP &);
43 
44  virtual ~EIG() = default;
45 
46  using BlockVector::operator=;
47 
48  using BlockVector::operator();
49 
50  using BlockVector::operator[];
51 
52  double min() const;
53 
54  double max() const;
55 
56  double lsfunc(double) const;
57 };
58 
59 }
60 
61 #endif /* EIG_H */
62 
63 /* vim: set ts=3 sw=3 expandtab :*/
EIG(BlockMatrix &)
Definition: EIG.cpp:30
double max() const
Definition: EIG.cpp:106
virtual ~EIG()=default
double lsfunc(double) const
Definition: EIG.cpp:117
double min() const
Definition: EIG.cpp:95