Update of /cvsroot/quantlibaddin/QuantLibAddin/qlo
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv475/qlo
Added Files:
mathf.hpp symmetricschurdecomposition.cpp
symmetricschurdecomposition.hpp
Removed Files:
math.hpp
Log Message:
exported SymmetricSchurDecomposition
--- math.hpp DELETED ---
--- NEW FILE: symmetricschurdecomposition.hpp ---
/*
Copyright (C) 2006 Ferdinando Ametrano
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it under the
terms of the QuantLib license. You should have received a copy of the
license along with this program; if not, please email qua...@li...
The license is also available online at http://quantlib.org/html/license.html
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
#ifndef qla_symmetricschurdecomposition_hpp
#define qla_symmetricschurdecomposition_hpp
#include <oh/objhandler.hpp>
#include <ql/Math/symmetricschurdecomposition.hpp>
namespace QuantLibAddin {
class SymmetricSchurDecomposition : public ObjHandler::LibraryObject<
QuantLib::SymmetricSchurDecomposition>
{
public:
SymmetricSchurDecomposition::SymmetricSchurDecomposition(
const QuantLib::Matrix & s);
};
}
#endif
--- NEW FILE: symmetricschurdecomposition.cpp ---
/*
Copyright (C) 2006 Ferdinando Ametrano
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it under the
terms of the QuantLib license. You should have received a copy of the
license along with this program; if not, please email qua...@li...
The license is also available online at http://quantlib.org/html/license.html
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
#if defined(HAVE_CONFIG_H)
#include <qlo/config.hpp>
#endif
#include <qlo/symmetricschurdecomposition.hpp>
namespace QuantLibAddin {
SymmetricSchurDecomposition::SymmetricSchurDecomposition(
const QuantLib::Matrix& s)
{
libraryObject_ = boost::shared_ptr<
QuantLib::SymmetricSchurDecomposition>(
new QuantLib::SymmetricSchurDecomposition(s));
}
}
--- NEW FILE: mathf.hpp ---
/*
Copyright (C) 2006 Ferdinando Ametrano
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it under the
terms of the QuantLib license. You should have received a copy of the
license along with this program; if not, please email qua...@li...
The license is also available online at http://quantlib.org/html/license.html
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
#ifndef qla_mathf_hpp
#define qla_mathf_hpp
#include <oh/objhandler.hpp>
#endif
|