mailr13435 - /branches/gui_testing/prompt/select.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on July 06, 2011 - 11:01:
Author: bugman
Date: Wed Jul  6 11:01:43 2011
New Revision: 13435

URL: http://svn.gna.org/viewcvs/relax?rev=13435&view=rev
Log:
Added a table-less version of the boolean doc string.


Modified:
    branches/gui_testing/prompt/select.py

Modified: branches/gui_testing/prompt/select.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/prompt/select.py?rev=13435&r1=13434&r2=13435&view=diff
==============================================================================
--- branches/gui_testing/prompt/select.py (original)
+++ branches/gui_testing/prompt/select.py Wed Jul  6 11:01:43 2011
@@ -53,7 +53,20 @@
 |                    |   |   |   |   |   |   |   |   |   |
 | XNOR               | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 |
 |____________________|___|___|___|___|___|___|___|___|___|
-"""]
+""", """
+The boolean operator can be used to change how spin systems are selected.  
The allowed values are: 'OR', 'NOR', 'AND', 'NAND', 'XOR', 'XNOR'.  The 
following details how the selections will occur for the different boolean 
operators:
+
+Spin system:  1 2 3 4 5 6 7 8 9
+Original selection:  0 1 1 1 1 0 1 0 1
+New selection:  0 1 1 1 1 1 0 0 0
+OR:  0 1 1 1 1 1 1 0 1
+NOR:  1 0 0 0 0 0 0 1 0
+AND:  0 1 1 1 1 0 0 0 0
+NAND:  1 0 0 0 0 1 1 1 1
+XOR:  0 0 0 0 0 1 1 0 1
+XNOR:  1 1 1 1 1 0 0 1 0
+"""
+]
 
 
 class Select(User_fn_class):




Related Messages


Powered by MHonArc, Updated Wed Jul 06 11:20:02 2011