From: <ate...@us...> - 2006-05-22 23:32:25
|
Revision: 149 Author: atenderholt Date: 2006-05-22 16:32:17 -0700 (Mon, 22 May 2006) ViewCVS: http://svn.sourceforge.net/cclib/?rev=149&view=rev Log Message: ----------- Minor OPA changes, and a fix to textprogress. OPA is correct, although it is horribly slow. Need to fix. Modified Paths: -------------- trunk/src/cclib/method/opa.py trunk/src/cclib/progress/textprogress.py Modified: trunk/src/cclib/method/opa.py =================================================================== --- trunk/src/cclib/method/opa.py 2006-05-22 22:20:58 UTC (rev 148) +++ trunk/src/cclib/method/opa.py 2006-05-22 23:32:17 UTC (rev 149) @@ -99,7 +99,7 @@ for i in range(nmocoeffs): if self.progress and random.random()<fupdate: - self.progress.update(step,"Mulliken Population Analysis") + self.progress.update(step,"Overlap Population Analysis") # OP_{AB,i} = \sum_{a in A} \sum_{b in B} 2 c_{ai} c_{bi} S_{ab} # = \sum_{a in A} c_{ai} \sum_{b in B} c_{bi} S_{ab} Modified: trunk/src/cclib/progress/textprogress.py =================================================================== --- trunk/src/cclib/progress/textprogress.py 2006-05-22 22:20:58 UTC (rev 148) +++ trunk/src/cclib/progress/textprogress.py 2006-05-22 23:32:17 UTC (rev 149) @@ -30,7 +30,7 @@ str+="] %3i"%(self.progress)+"%" if text: - str+=" Parsing "+text + str+=" "+text sys.stdout.write("\r"+70*" ") sys.stdout.flush() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |