-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update documentation, rename, complex number and rm stop::, index_type
Co-authored-by: Thomas Grützmacher <[email protected]> Co-authored-by: Tobias Ribizel <[email protected]> Co-authored-by: Marcel Koch <[email protected]>
- Loading branch information
1 parent
5412de5
commit 2629167
Showing
13 changed files
with
279 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// SPDX-FileCopyrightText: 2017 - 2024 The Ginkgo authors | ||
// | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
|
||
#ifndef GKO_CORE_CONFIG_STOP_CONFIG_HPP_ | ||
#define GKO_CORE_CONFIG_STOP_CONFIG_HPP_ | ||
|
||
|
||
#include <ginkgo/core/config/config.hpp> | ||
#include <ginkgo/core/config/registry.hpp> | ||
#include <ginkgo/core/config/type_descriptor.hpp> | ||
#include <ginkgo/core/stop/criterion.hpp> | ||
|
||
|
||
namespace gko { | ||
namespace config { | ||
|
||
|
||
deferred_factory_parameter<stop::CriterionFactory> configure_time( | ||
const pnode& config, const registry& context, const type_descriptor& td); | ||
|
||
deferred_factory_parameter<stop::CriterionFactory> configure_iter( | ||
const pnode& config, const registry& context, const type_descriptor& td); | ||
|
||
deferred_factory_parameter<stop::CriterionFactory> configure_residual( | ||
const pnode& config, const registry& context, const type_descriptor& td); | ||
|
||
deferred_factory_parameter<stop::CriterionFactory> configure_implicit_residual( | ||
const pnode& config, const registry& context, const type_descriptor& td); | ||
|
||
} // namespace config | ||
} // namespace gko | ||
|
||
|
||
#endif // GKO_CORE_CONFIG_STOP_CONFIG_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.