From 175ba61a585e1a037dc061eeefc87bd0ca930c3a Mon Sep 17 00:00:00 2001 From: Alexander Condello Date: Wed, 4 Dec 2024 13:43:57 -0800 Subject: [PATCH] Remove model.pxd and therefore _Graph aliases --- dwave/optimization/model.pxd | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 dwave/optimization/model.pxd diff --git a/dwave/optimization/model.pxd b/dwave/optimization/model.pxd deleted file mode 100644 index 9beeb841..00000000 --- a/dwave/optimization/model.pxd +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 2024 D-Wave Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Pull ArraySymbol and Symbol into this namespace for convenience -from dwave.optimization._graph cimport ArraySymbol, Symbol - -# Alias _Graph as Model, this allows other modules to cimport Model if they -# wish which is sometimes convenient. -from dwave.optimization._graph cimport _Graph as Model