diff --git a/Applications/Utils/GeoTools/createRaster.cpp b/Applications/Utils/GeoTools/createRaster.cpp index 4fd1b41b9ee2955be82d0fc50db9e534ebd7ff17..2591da1cc831ad6fdbdf93ba7e9c24097df37da9 100644 --- a/Applications/Utils/GeoTools/createRaster.cpp +++ b/Applications/Utils/GeoTools/createRaster.cpp @@ -25,7 +25,8 @@ int main(int argc, char* argv[]) { TCLAP::CmdLine cmd( - "computeSurfaceNodeIDsInPolygonalRegion\n\n" + "Create a raster of specified size at specified origin where every " + "pixel has the value zero.\n\n" "OpenGeoSys-6 software, version " + GitInfoLib::GitInfo::ogs_version + ".\n" diff --git a/MeshLib/Properties-impl.h b/MeshLib/Properties-impl.h index d85e2f18d63fc2912c28fc474a4b6fefd89ff3ae..ba0dcafd9bb81922f7aa58a8d7093172d1f578c5 100644 --- a/MeshLib/Properties-impl.h +++ b/MeshLib/Properties-impl.h @@ -234,8 +234,8 @@ void applyToPropertyVectors(Properties const& properties, Function f) // initializer list is a non-standard explicit type conversion syntax" // with MSVC-15. bool success = f(double{}, property) || f(float{}, property) || - f(int{}, property) || f(long{}, property) || - f(unsigned{}, property) || f(long{}, property) || + f(int{}, property) || f(unsigned{}, property) || + f(long{}, property) || f(static_cast<unsigned long>(0), property) || f(std::size_t{}, property) || f(char{}, property) || f(static_cast<unsigned char>(0), property); diff --git a/MeshLib/Properties.cpp b/MeshLib/Properties.cpp index 621a5627da2f577ba3817b7b1de63491231cf4b4..da8366ecdce400b0350fd64c7f2335794ddf776f 100644 --- a/MeshLib/Properties.cpp +++ b/MeshLib/Properties.cpp @@ -103,11 +103,9 @@ Properties Properties::excludeCopyProperties( Properties::Properties(Properties const& properties) : _properties(properties._properties) { - std::vector<std::size_t> exclude_positions; for (auto& name_vector_pair : _properties) { - PropertyVectorBase* t( - name_vector_pair.second->clone(exclude_positions)); + PropertyVectorBase* t(name_vector_pair.second->clone({})); name_vector_pair.second = t; } } diff --git a/ProcessLib/HydroMechanics/HydroMechanicsProcessData.h b/ProcessLib/HydroMechanics/HydroMechanicsProcessData.h index b8e543718f1c7e9843bac4460240f46403ca121f..9f59fe4f260ae6364288c349a62be123ba622188 100644 --- a/ProcessLib/HydroMechanics/HydroMechanicsProcessData.h +++ b/ProcessLib/HydroMechanics/HydroMechanicsProcessData.h @@ -38,10 +38,8 @@ struct HydroMechanicsProcessData media_map = nullptr; /// The constitutive relation for the mechanical part. - /// \note Linear elasticity is the only supported one in the moment. - std::map< - int, - std::unique_ptr<MaterialLib::Solids::MechanicsBase<DisplacementDim>>> + std::map<int, std::unique_ptr< + MaterialLib::Solids::MechanicsBase<DisplacementDim>>> solid_materials; /// Optional, initial stress field. A symmetric tensor, short vector diff --git a/ProcessLib/TH2M/TH2MProcessData.h b/ProcessLib/TH2M/TH2MProcessData.h index 216bd0b69e9e83d21bf32a13ce1768638dead1da..e3c8da8d1fd9c991ceeb0abb985baaab7c951a4e 100644 --- a/ProcessLib/TH2M/TH2MProcessData.h +++ b/ProcessLib/TH2M/TH2MProcessData.h @@ -32,7 +32,6 @@ struct TH2MProcessData media_map = nullptr; /// The constitutive relation for the mechanical part. - /// \note Linear elasticity is the only supported one in the moment. std::map<int, std::unique_ptr< MaterialLib::Solids::MechanicsBase<DisplacementDim>>> solid_materials; diff --git a/ProcessLib/ThermoHydroMechanics/ThermoHydroMechanicsProcessData.h b/ProcessLib/ThermoHydroMechanics/ThermoHydroMechanicsProcessData.h index 2886f9fbca8aa18b2898c16064db61fd71eb4f39..02d0fef8f514dd7bf25e565f1e8be9c7218024c0 100644 --- a/ProcessLib/ThermoHydroMechanics/ThermoHydroMechanicsProcessData.h +++ b/ProcessLib/ThermoHydroMechanics/ThermoHydroMechanicsProcessData.h @@ -39,7 +39,6 @@ struct ThermoHydroMechanicsProcessData media_map = nullptr; /// The constitutive relation for the mechanical part. - /// \note Linear elasticity is the only supported one in the moment. std::map<int, std::unique_ptr< MaterialLib::Solids::MechanicsBase<DisplacementDim>>> solid_materials; diff --git a/web/content/docs/devguide/advanced/python-wheel/index.md b/web/content/docs/devguide/advanced/python-wheel/index.md index 61ad07f9af495e88ec2a93904b0dcec948829f26..bc0e2474a4703f79722eafdbc0018b973a5188a0 100644 --- a/web/content/docs/devguide/advanced/python-wheel/index.md +++ b/web/content/docs/devguide/advanced/python-wheel/index.md @@ -63,7 +63,7 @@ You can test it locally with, e.g. only building for Python 3.10: CIBW_BUILD="cp310*" pipx run cibuildwheel ``` -Please note that on Linux `cibuildwheel` runs the builds inside [`manylinux`](https://github.com/pypa/manylinux) Docker containers. On other platforms the build happens with native tools. See the [cibuildwheel docs](https://cibuildwheel.readthedocs.io/en/stable/#how-it-works) for more information. +Please note that on Linux `cibuildwheel` runs the builds inside [`manylinux`](https://github.com/pypa/manylinux) Docker containers. On other platforms the build happens with native tools. See the [`cibuildwheel` docs](https://cibuildwheel.readthedocs.io/en/stable/#how-it-works) for more information. Wheels are generated in the `wheelhouse/`-folder.