1
0
Fork 0

Added shebang to all *.py files

master
Meliurwen 3 years ago
parent 992aa25761
commit d568ad20e4
  1. 1
      docs/conf.py
  2. 1
      src/pyctbn/legacy/estimators/__init__.py
  3. 1
      src/pyctbn/legacy/estimators/fam_score_calculator.py
  4. 1
      src/pyctbn/legacy/estimators/parameters_estimator.py
  5. 1
      src/pyctbn/legacy/estimators/structure_constraint_based_estimator.py
  6. 1
      src/pyctbn/legacy/estimators/structure_estimator.py
  7. 1
      src/pyctbn/legacy/estimators/structure_score_based_estimator.py
  8. 1
      src/pyctbn/legacy/optimizers/__init__.py
  9. 1
      src/pyctbn/legacy/optimizers/constraint_based_optimizer.py
  10. 1
      src/pyctbn/legacy/optimizers/hill_climbing_search.py
  11. 1
      src/pyctbn/legacy/optimizers/optimizer.py
  12. 1
      src/pyctbn/legacy/optimizers/tabu_search.py
  13. 1
      src/pyctbn/legacy/structure_graph/__init__.py
  14. 1
      src/pyctbn/legacy/structure_graph/conditional_intensity_matrix.py
  15. 1
      src/pyctbn/legacy/structure_graph/network_generator.py
  16. 1
      src/pyctbn/legacy/structure_graph/network_graph.py
  17. 1
      src/pyctbn/legacy/structure_graph/sample_path.py
  18. 1
      src/pyctbn/legacy/structure_graph/set_of_cims.py
  19. 1
      src/pyctbn/legacy/structure_graph/structure.py
  20. 1
      src/pyctbn/legacy/structure_graph/trajectory.py
  21. 1
      src/pyctbn/legacy/structure_graph/trajectory_generator.py
  22. 1
      src/pyctbn/legacy/utility/__init__.py
  23. 1
      src/pyctbn/legacy/utility/abstract_exporter.py
  24. 1
      src/pyctbn/legacy/utility/abstract_importer.py
  25. 1
      src/pyctbn/legacy/utility/cache.py
  26. 1
      src/pyctbn/legacy/utility/json_exporter.py
  27. 1
      src/pyctbn/legacy/utility/json_importer.py
  28. 1
      src/pyctbn/legacy/utility/sample_importer.py
  29. 1
      tests/__init__.py
  30. 1
      tests/estimators/test_parameters_estimator.py
  31. 1
      tests/estimators/test_structure_constraint_based_estimator.py
  32. 1
      tests/estimators/test_structure_estimator.py
  33. 1
      tests/estimators/test_structure_score_based_estimator.py
  34. 1
      tests/optimizers/test_hill_climbing_search.py
  35. 1
      tests/optimizers/test_tabu_search.py
  36. 1
      tests/structure_graph/test_cim.py
  37. 1
      tests/structure_graph/test_networkgenerator.py
  38. 1
      tests/structure_graph/test_networkgraph.py
  39. 1
      tests/structure_graph/test_sample_path.py
  40. 1
      tests/structure_graph/test_setofcims.py
  41. 1
      tests/structure_graph/test_structure.py
  42. 1
      tests/structure_graph/test_trajectory.py
  43. 1
      tests/structure_graph/test_trajectorygenerator.py
  44. 1
      tests/utility/test_cache.py
  45. 1
      tests/utility/test_json_exporter.py
  46. 1
      tests/utility/test_json_importer.py
  47. 1
      tests/utility/test_sample_importer.py

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
from .structure import Structure
from .network_graph import NetworkGraph
from .conditional_intensity_matrix import ConditionalIntensityMatrix

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
from ..utility.abstract_importer import AbstractImporter
from .conditional_intensity_matrix import ConditionalIntensityMatrix
from .set_of_cims import SetOfCims

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
import json
import pandas as pd
import os

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
import json
import pandas as pd
import numpy as np

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,2 +1,3 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
import unittest
import random
import numpy as np

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
import unittest
import random

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
import unittest
import random
import numpy as np

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# License: MIT License