Skip to content

Commit

Permalink
rename adsg to dsg
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Saves committed Sep 26, 2024
1 parent c6f84ac commit e4bfccf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SMTDesignSpace/design_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,7 @@ def __repr__(self):
return f"{self.__class__.__name__}({self.design_variables!r})"


class ArchDesignSpaceGraph(BaseDesignSpace):
class DesignSpaceGraph(BaseDesignSpace):
""" """

def __init__(
Expand Down
4 changes: 2 additions & 2 deletions SMTDesignSpace/test_design_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from SMTDesignSpace.design_space import (
HAS_CONFIG_SPACE,
HAS_ADSG,
ArchDesignSpaceGraph,
DesignSpaceGraph,
BaseDesignSpace,
CategoricalVariable,
DesignSpace,
Expand Down Expand Up @@ -818,7 +818,7 @@ def test_adsg_to_legacy(self):
),
design_space.is_conditionally_acting,
)
design_space2 = ArchDesignSpaceGraph(adsg=adsg)
design_space2 = DesignSpaceGraph(adsg=adsg)
np.testing.assert_array_equal(
np.array(
[
Expand Down

0 comments on commit e4bfccf

Please sign in to comment.