Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunelFeng committed Dec 30, 2023
1 parent 869ba96 commit 98b8004
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/GraphCtrl/GraphElement/GNode/GNodeDefine.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ enum class GNodeType {
* 创建GCluster的时候,dependence为空
* 创建GRegion的时候,dependence不为空。若为空,则表示可直接执行
*/
struct GNodeInfo : public GraphObject {
struct GNodeInfo : public CStruct {
std::string name_; // 名称
CSize loop_ { CGRAPH_DEFAULT_LOOP_TIMES } ; // 循环次数
GElementPtrSet dependence_; // 依赖节点
Expand All @@ -50,11 +50,6 @@ struct GNodeInfo : public GraphObject {
this->loop_ = loop;
this->dependence_ = dependence;
}

private:
CStatus run() override {
CGRAPH_NO_SUPPORT
}
};

CGRAPH_NAMESPACE_END
Expand Down

0 comments on commit 98b8004

Please sign in to comment.