Hi guys,
After I found a bug in sage 3.2.3 ( see Division error in Sage 3.3 but
not in Sage 3.1.1 posted march 7, 2009), I decided used sage 3.1.1.
Now I have a problem with sage 3.1.1
1. the program generate the object H
2. save H
3. G =load(H)
I assume G == H, but it doesn't happens. See the following code.
H={}
p=Integer(3)
print
for k in range(1,11):
k= Integer(k)
if p.divides(k):
H[-k] = k^2
else:
H[-k] = infinity
save (H,'test.sobj')
print
for k in H.keys():
print (k,H[k])
print
G = load('test.sobj')
for k in G.keys():
print (k,G[k])
Some idea of how to fix this?
Thanks,
----Alex Lara.
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---