Skip to content

Commit

Permalink
fill instead of aux.py (bad name for Windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Aug 27, 2023
1 parent 4827481 commit 631fd71
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cvx/markowitz/models/expected_returns.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from cvx.markowitz.model import Model
from cvx.markowitz.names import DataNames as D
from cvx.markowitz.types import Matrix, Variables
from cvx.markowitz.utils.aux import fill_vector
from cvx.markowitz.utils.fill import fill_vector


@dataclass(frozen=True)
Expand Down
2 changes: 1 addition & 1 deletion cvx/markowitz/models/holding_costs.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from cvx.markowitz.model import Model
from cvx.markowitz.names import DataNames as D
from cvx.markowitz.types import Matrix, Variables
from cvx.markowitz.utils.aux import fill_vector
from cvx.markowitz.utils.fill import fill_vector


@dataclass(frozen=True)
Expand Down
2 changes: 1 addition & 1 deletion cvx/markowitz/models/trading_costs.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from cvx.markowitz.model import Model
from cvx.markowitz.names import DataNames as D
from cvx.markowitz.types import Matrix, Variables
from cvx.markowitz.utils.aux import fill_vector
from cvx.markowitz.utils.fill import fill_vector


@dataclass(frozen=True)
Expand Down
2 changes: 1 addition & 1 deletion cvx/markowitz/risk/cvar/cvar.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from cvx.markowitz.model import Model
from cvx.markowitz.names import DataNames as D
from cvx.markowitz.types import Matrix, Variables
from cvx.markowitz.utils.aux import fill_matrix
from cvx.markowitz.utils.fill import fill_matrix


@dataclass(frozen=True)
Expand Down
2 changes: 1 addition & 1 deletion cvx/markowitz/risk/factor/factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from cvx.markowitz.model import Model
from cvx.markowitz.names import DataNames as D
from cvx.markowitz.types import Expressions, Matrix, Variables
from cvx.markowitz.utils.aux import fill_matrix, fill_vector
from cvx.markowitz.utils.fill import fill_matrix, fill_vector


@dataclass(frozen=True)
Expand Down
2 changes: 1 addition & 1 deletion cvx/markowitz/risk/sample/sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from cvx.markowitz.model import Model
from cvx.markowitz.names import DataNames as D
from cvx.markowitz.types import Expressions, Matrix, Variables
from cvx.markowitz.utils.aux import fill_matrix, fill_vector
from cvx.markowitz.utils.fill import fill_matrix, fill_vector


@dataclass(frozen=True)
Expand Down
File renamed without changes.

0 comments on commit 631fd71

Please sign in to comment.