CodeMirror-SwiftUI icon indicating copy to clipboard operation
CodeMirror-SwiftUI copied to clipboard

CodeMirror-SwiftUI is a lightweight wrapper of CodeMirror for macOS and iOS packaged for SwiftUI.

Results 7 CodeMirror-SwiftUI issues
Sort by recently updated
recently updated
newest added

Hi, I tried to install the PWDFT.jl code and wanted to run the simple example Si_fcc/ julia run.jl but it does not run out of the box. It failed because...

As this format also used in PWSCF this will make easier to compare the results.

List of some possible cases: - Calculation of `Rhoe`: ```julia function calc_rhoe!(Ham::Hamiltonian, psiks::BlochWavefunc, Rhoe::Array{Float64,2}) # Rhoe will be updated with new calculated Rhoe end ``` - Diagonalization routines: all work...

optimization

Currently, we must pass a list of pseudopotentials to `Hamiltonian` constructor as positional parameters: ```julia Ham = Hamiltonian( atoms, pspfiles, ecutwfc ) ``` If we want to use all-electrons calculation,...

enhancement

For example, rather than ```julia KS_solve_SCF!( Ham, mix_method="pulay" ) ``` we use ```julia KS_solve_SCF!( Ham, mix_method=:pulay ) ``` instead. A simple benchmark might justify the above use.

Is there any way I can disable user interactions. I just need to show code not to edit it. Thank you.