From 1be436b764762d21fb5188c8046fd77ea507ea1b Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 28 Dec 2024 23:40:52 +0100 Subject: [PATCH] WIP --- src/db/db/dbCompoundOperation.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/db/db/dbCompoundOperation.h b/src/db/db/dbCompoundOperation.h index 1a6bb1205..0d7072396 100644 --- a/src/db/db/dbCompoundOperation.h +++ b/src/db/db/dbCompoundOperation.h @@ -201,6 +201,11 @@ public: */ virtual bool wants_variants () const { return false; } + /** + * @brief Indicates that the node expects calls through do_compute_local in the properties flavor + */ + virtual bool wants_properties () const { return false; } + void compute_local (CompoundRegionOperationCache *cache, db::Layout *layout, db::Cell *cell, const shape_interactions &interactions, std::vector > &results, const db::LocalProcessorBase *proc) const { implement_compute_local (cache, layout, cell, interactions, results, proc); @@ -349,11 +354,6 @@ protected: virtual std::string generated_description () const; virtual bool wants_caching () const { return true; } - /** - * @brief Indicates that the node expects calls through do_compute_local in the properties flavor - */ - virtual bool wants_properties () const { return false; } - private: std::string m_description; db::Coord m_dist;