Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ab09hd and tg01gd, and show that n,m,p can be removed #225

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ build.log
*.egg-info/
.coverage
*~
.#*
.*~
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.*~ This is already covered by *~
What kind of tool creates files with # in it?

setup.cfg
_skbuild
9 changes: 6 additions & 3 deletions slycot/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -626,9 +626,12 @@ set(SLYCOT_FSOURCE src/ftruefalse.f src/XERBLA.f)

set(F2PYSOURCE src/_wrapper.pyf)
set(F2PYSOURCE_DEPS
src/analysis.pyf src/math.pyf
src/transform.pyf src/synthesis.pyf
src/_helper.pyf)
src/analysis.pyf
src/math.pyf
src/transform.pyf
src/synthesis.pyf
src/_helper.pyf
)

set(PYSOURCE

Expand Down
3 changes: 2 additions & 1 deletion slycot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Analysis routines (15/40 wrapped)
from .analysis import ab01nd, ab05md, ab05nd, ab07nd, ab08nd, ab08nz
from .analysis import ab09ad, ab09ax, ab09bd, ab09md, ab09nd
from .analysis import ab09ad, ab09ax, ab09bd, ab09md, ab09nd, ab09hd
from .analysis import ab13bd, ab13dd, ab13ed, ab13fd, ab13md


Expand Down Expand Up @@ -44,6 +44,7 @@
from .transform import tc04ad, tc01od
from .transform import tf01md, tf01rd
from .transform import td04ad, tb01pd
from .transform import tg01ad, tg01fd, tg01gd

from .version import __version__

Expand Down
Loading