Skip to content

Commit

Permalink
[UPD] - added julia as optional dependency in example template
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantinweise committed Apr 9, 2024
1 parent 59cbdb1 commit 33a5cfe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Binary file modified doc/examples/algorithms/tmp/meregadaptiveprojection.hdf5
100755 → 100644
Binary file not shown.
Binary file modified doc/examples/algorithms/tmp/meregadaptiveprojection.pkl
Binary file not shown.
5 changes: 4 additions & 1 deletion templates/MyModel_julia.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import inspect
import numpy as np
from julia import Main
from pygpc.AbstractModel import AbstractModel

try:
from julia import Main
except ImportError:
pass

class MyModel_julia(AbstractModel):
"""
Expand Down

0 comments on commit 33a5cfe

Please sign in to comment.