Skip to content

Commit

Permalink
Merge 0b5a82c into efb1fef
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrpugh committed Apr 14, 2015
2 parents efb1fef + 0b5a82c commit 9829a1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -10,6 +10,9 @@
# ignore build info
dist/

# ignore *.egg-info
*.egg-info/

# ignore version file
pycollocation/version.py

Expand Down
2 changes: 1 addition & 1 deletion pycollocation/symbolics.py
Expand Up @@ -52,7 +52,7 @@ def _symbolic_system(self):
@property
def _symbolic_vars(self):
"""List of symbolic model variables."""
return [self.independent_var] + self.dependent_vars
return sym.var([self.independent_var] + self.dependent_vars)

def _clear_cache(self):
"""Clear cached symbolic Jacobian."""
Expand Down

0 comments on commit 9829a1a

Please sign in to comment.