Post Reply 
Where's the Error?
08-30-2021, 03:36 PM
Post: #2
RE: Where's the Error?
With a few changes your program runs and returns:

0.880981899968678
Index: 1172413.79310345

The changes I made:
  1. add 'from hpprime import *' at the beginning
  2. replace the 'ᴇ−' on line 9 by standard 'E-' letters, it seems that the special character codes used by the Prime for E and minus signs are not supported by Python.

Code:
#PYTHON name
from math import *
from hpprime import *
t=eval("ticks()")
loops=1000
for i in range(0,loops):
  r0=10
  while True:
    x=r0 
    x+=1
    x-=4.567E-4
    x+=70
    x-=69
    x*=7
    x/=11
    r0-=1
    if r0<=0:
      break
  x=log(x)
  x=sin(x)
  x=sqrt(x)
  x=sqrt(x)
print(x)
t=(eval("ticks()")-t)/1000
print("Index:",34/t*loops) 
#end 
EXPORT calcperf()
BEGIN
  PYTHON(name);
END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Where's the Error? - toml_12953 - 08-30-2021, 03:04 PM
RE: Where's the Error? - Didier Lachieze - 08-30-2021 03:36 PM
RE: Where's the Error? - toml_12953 - 08-30-2021, 04:40 PM



User(s) browsing this thread: 1 Guest(s)