From fe8692f6230cf9b3dd44f62b986a4619e92ade02 Mon Sep 17 00:00:00 2001 From: Steinar Foss Date: Wed, 16 Oct 2019 14:20:16 +0200 Subject: [PATCH] schedule.cpp: removed unused function. --- python/cxx/schedule.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/python/cxx/schedule.cpp b/python/cxx/schedule.cpp index 306382b62..4b30a1308 100644 --- a/python/cxx/schedule.cpp +++ b/python/cxx/schedule.cpp @@ -54,9 +54,6 @@ namespace { throw py::key_error( name ); } - GTNode get_grouptree ( const Schedule& sch, const std::string& root_node, const size_t& timestep) { - return sch.groupTree(root_node, timestep); - } system_clock::time_point get_start_time( const Schedule& s ) { return datetime(s.posixStartTime()); } @@ -102,7 +99,6 @@ void python::common::export_Schedule(py::module& module) { .def( "get_wells", &Schedule::getWells2) .def( "get_well", &get_well) .def( "__contains__", &has_well ) - .def( "group", &Schedule::getGroup2, ref_internal) - .def( "_group_tree", &get_grouptree, ref_internal); + .def( "group", &Schedule::getGroup2, ref_internal); }