casm.quantumespresso.qeio.QUANTUM_ESPRESSO_BOOL_LIST

casm.quantumespresso.qeio.QUANTUM_ESPRESSO_BOOL_LIST = {'CELL': [], 'CONTROL': ['wf_collect', 'tstress', 'tprnfor', 'lkpoint_dir', 'tefield', 'dipfield', 'lelfield', 'lorbm', 'lberry', 'lfcpopt'], 'ELECTRONS': ['scf_must_converge', 'adaptive_thr', 'diago_full_acc', 'tqr'], 'IONS': ['remove_rigid_rot', 'refold_pos'], 'SYSTEM': ['nosym', 'nosym_evc', 'noinv', 'no_t_rev', 'force_symmorphic', 'use_all_frac', 'one_atom_occupations', 'starting_spin_angle', 'noncolin', 'x_gamma_extrapolation', 'lda_plus_u', 'lspinorb', 'london', 'xdm', 'uniqueb', 'rhombohedral']}

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s

(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:

d = {} for k, v in iterable:

d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list. For example: dict(one=1, two=2)