Skip to content

Commit

Permalink
gwt miner test py
Browse files Browse the repository at this point in the history
  • Loading branch information
waterflier committed Jun 24, 2024
1 parent f37f59c commit 79e2cf6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions doc/gwt_mine.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
def mine_gwt(x):
return 0.2 + (1.8*x) / (x + 1)

X = 0
while X<10:
print(mine_gwt(X))
X = X + 0.1

0 comments on commit 79e2cf6

Please sign in to comment.