// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr> // Copyright (C) 2009 Hauke Heibel <hauke.heibel@googlemail.com> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifdefined(_VECTOR_) // workaround MSVC std::vector implementation void resize(size_type new_size, const value_type& x)
{ if (vector_base::size() < new_size)
vector_base::_Insert_n(vector_base::end(), new_size - vector_base::size(), x); elseif (new_size < vector_base::size())
vector_base::erase(vector_base::begin() + new_size, vector_base::end());
} void push_back(const value_type& x)
{ vector_base::push_back(x); } using vector_base::insert;
iterator insert(const_iterator position, const value_type& x)
{ return vector_base::insert(position,x); } void insert(const_iterator position, size_type new_size, const value_type& x)
{ vector_base::insert(position, new_size, x); } #elifdefined(_GLIBCXX_VECTOR) && (!(EIGEN_GNUC_AT_LEAST(4,1))) /* Note that before gcc-4.1 we already have: std::vector::resize(size_type,const T&).
* However, this specialization is still needed to make the above EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION trick to work. */ void resize(size_type new_size, const value_type& x)
{
vector_base::resize(new_size,x);
} #elifdefined(_GLIBCXX_VECTOR) && EIGEN_GNUC_AT_LEAST(4,2) // workaround GCC std::vector implementation void resize(size_type new_size, const value_type& x)
{ if (new_size < vector_base::size())
vector_base::_M_erase_at_end(this->_M_impl._M_start + new_size); else
vector_base::insert(vector_base::end(), new_size - vector_base::size(), x);
} #else // either GCC 4.1 or non-GCC // default implementation which should always work. void resize(size_type new_size, const value_type& x)
{ if (new_size < vector_base::size())
vector_base::erase(vector_base::begin() + new_size, vector_base::end()); elseif (new_size > vector_base::size())
vector_base::insert(vector_base::end(), new_size - vector_base::size(), x);
} #endif
};
} #endif// !EIGEN_HAS_CXX11_CONTAINERS
#endif// EIGEN_STDVECTOR_H
Messung V0.5 in Prozent
¤ Diese beiden folgenden Angebotsgruppen bietet das Unternehmen0.10Angebot
(Wie Sie bei der Firma Beratungs- und Dienstleistungen beauftragen können 2026-06-06)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.