| 42 | } // namespace |
| 43 | |
| 44 | Scope::Impl::Impl(Graph* graph, Status* status, NameMap* name_map, |
| 45 | ShapeRefiner* refiner, bool disable_shape_inference) |
| 46 | : graph_(graph), |
| 47 | status_(status), |
| 48 | name_map_(name_map), |
| 49 | refiner_(refiner), |
| 50 | scope_used_(nullptr), |
| 51 | colocation_constraints_(), |
| 52 | disable_shape_inference_(disable_shape_inference) {} |
| 53 | |
| 54 | Scope::Impl::Impl(const std::shared_ptr<Graph>& graph, |
| 55 | const std::shared_ptr<Status>& status, |
nothing calls this directly
no test coverage detected