Skip to content

Commit

Permalink
Issue #32: cleans up unused and badly named folders/files
Browse files Browse the repository at this point in the history
- rename pyssp to ssp to match repo and package name
- new developer folder with dev related files
- renamed dev.md file to README_DEVEVELOPER.MD under new folder
  • Loading branch information
mahdiolfat committed Feb 28, 2024
1 parent d9f167e commit 9f4e0ee
Show file tree
Hide file tree
Showing 16 changed files with 9 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ContinuousTesting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements-testing.txt
pip install -r dev/requirements-testing.txt
- name: Static Lint
run: |
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 0 additions & 9 deletions pyssp/routines.py

This file was deleted.

6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-r requirements-basic.txt
-r requirements-testing.txt
-r requirements-dev.txt
-r developer/requirements-basic.txt
-r developer/requirements-testing.txt
-r developer/requirements-dev.txt
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions pyssp/state.py → ssp/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,8 @@ def nywe(x: ArrayLike, p: int, q: int) -> NoReturn:
def ndeterministic(x: ArrayLike, p: int, q: int) -> NoReturn:
"""Normal Determenistic Systems of Equations."""
raise NotImplementedError()


def back_substitution(x: list[float], p: int) -> NoReturn:
"""Convinient recursion for an all-pole model."""
raise NotImplementedError()
File renamed without changes.

0 comments on commit 9f4e0ee

Please sign in to comment.