defining functions

This commit is contained in:
BuildTools 2021-09-13 18:06:13 -05:00
parent ad5ee25a8e
commit 867be1c23e
2 changed files with 9 additions and 0 deletions

1
gen-bn Submodule

@ -0,0 +1 @@
Subproject commit 9bfc2e612fbe755c0b9cb81ebe768f640dff8f5c

View File

@ -7,6 +7,14 @@ def main():
print("Hello")
print("Now Hello")
def likelihood_weighting():
print("Hello")
def gibbs_sampling():
print("Hello")
def metropolis_hastings():
print("Hello")
if __name__ == '__main__':
main()