Revision: 20434
          http://sourceforge.net/p/jmol/code/20434
Author:   hansonr
Date:     2015-04-05 03:38:11 +0000 (Sun, 05 Apr 2015)
Log Message:
-----------
Jmol.___JmolVersion="14.3.13_2015.04.05" 

code: rewriting FOR loop code to enhance performance

new feature: set showScript -1 
  -- turns off history (on when commands come from the keyboard)
  -- stops every-second JavaScript interruptions -- Caution!
  
new feature: for (var i FROM [a, b]) {...}
  -- same as for (var i = a; i <= b; i++) when a < b
  -- same as for (var i = a; i >= b; i--) when a > b
  -- much more efficient

bug fix: for (var i in hashArray) {....}  broken (also in 14.2; not fixed there)

Modified Paths:
--------------
    trunk/Jmol/src/org/jmol/viewer/Jmol.properties

Modified: trunk/Jmol/src/org/jmol/viewer/Jmol.properties
===================================================================
--- trunk/Jmol/src/org/jmol/viewer/Jmol.properties      2015-04-05 03:35:05 UTC 
(rev 20433)
+++ trunk/Jmol/src/org/jmol/viewer/Jmol.properties      2015-04-05 03:38:11 UTC 
(rev 20434)
@@ -18,6 +18,10 @@
 
 code: rewriting FOR loop code to enhance performance
 
+new feature: set showScript -1 
+  -- turns off history (on when commands come from the keyboard)
+  -- stops every-second JavaScript interruptions -- Caution!
+  
 new feature: for (var i FROM [a, b]) {...}
   -- same as for (var i = a; i <= b; i++) when a < b
   -- same as for (var i = a; i >= b; i--) when a > b

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Jmol-commits mailing list
Jmol-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jmol-commits

Reply via email to