├── .gitignore ├── Perturbed GHZ ├── LOCC-VQE_GHZ_QMI.py ├── LOCC-VQE_GHZ_sample_load_param_training.py ├── LOCC-VQE_GHZ_sample_training.py └── LOCC-VQE_GHZ_training.py ├── Perturbed rotated surface code └── Nx=6,Ny=2 │ ├── LOCC-VQE_RSC_Correlation.py │ ├── LOCC-VQE_RSC_QMI.py │ ├── LOCC-VQE_RSC_QMI_X.py │ ├── LOCC-VQE_RSC_load_params.py │ ├── LOCC-VQE_RSC_training.py │ ├── LOCC-VQE_RSC_training_QMI_long_large.py │ ├── LOCC-VQE_RSC_training_X.py │ ├── LOCC-VQE_RSC_training_X_large.py │ ├── LOCC-VQE_RSC_training_long_String.py │ ├── LOCC-VQE_RSC_training_long_String_copy.py │ └── Unitary-VQE_RSC_training.py ├── Perturbed toric code └── 2-by-2-toric │ ├── LOCC-VQE_2-by-2_toric_X-preserving_training.py │ ├── LOCC-VQE_sample_2-by-2_toric_training.py │ └── Unitary-VQE_2-by-2-toric_training.py ├── Readme.md ├── Transverse-field Ising model ├── LOCC-VQE_Ising_8_Correlation.py ├── LOCC-VQE_Ising_8_Gradient.py ├── LOCC-VQE_Ising_8_QMI.py ├── LOCC-VQE_Ising_8_training.py ├── LOCC-VQE_sample_Ising_4_training.py └── Unitary-VQE_Ising_8_training.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /Perturbed GHZ /LOCC-VQE_GHZ_QMI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed GHZ /LOCC-VQE_GHZ_QMI.py -------------------------------------------------------------------------------- /Perturbed GHZ /LOCC-VQE_GHZ_sample_load_param_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed GHZ /LOCC-VQE_GHZ_sample_load_param_training.py -------------------------------------------------------------------------------- /Perturbed GHZ /LOCC-VQE_GHZ_sample_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed GHZ /LOCC-VQE_GHZ_sample_training.py -------------------------------------------------------------------------------- /Perturbed GHZ /LOCC-VQE_GHZ_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed GHZ /LOCC-VQE_GHZ_training.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_Correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_Correlation.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_QMI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_QMI.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_QMI_X.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_QMI_X.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_load_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_load_params.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_QMI_long_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_QMI_long_large.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_X.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_X.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_X_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_X_large.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_long_String.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_long_String.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_long_String_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/LOCC-VQE_RSC_training_long_String_copy.py -------------------------------------------------------------------------------- /Perturbed rotated surface code/Nx=6,Ny=2/Unitary-VQE_RSC_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed rotated surface code/Nx=6,Ny=2/Unitary-VQE_RSC_training.py -------------------------------------------------------------------------------- /Perturbed toric code/2-by-2-toric/LOCC-VQE_2-by-2_toric_X-preserving_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed toric code/2-by-2-toric/LOCC-VQE_2-by-2_toric_X-preserving_training.py -------------------------------------------------------------------------------- /Perturbed toric code/2-by-2-toric/LOCC-VQE_sample_2-by-2_toric_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed toric code/2-by-2-toric/LOCC-VQE_sample_2-by-2_toric_training.py -------------------------------------------------------------------------------- /Perturbed toric code/2-by-2-toric/Unitary-VQE_2-by-2-toric_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Perturbed toric code/2-by-2-toric/Unitary-VQE_2-by-2-toric_training.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Readme.md -------------------------------------------------------------------------------- /Transverse-field Ising model/LOCC-VQE_Ising_8_Correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Transverse-field Ising model/LOCC-VQE_Ising_8_Correlation.py -------------------------------------------------------------------------------- /Transverse-field Ising model/LOCC-VQE_Ising_8_Gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Transverse-field Ising model/LOCC-VQE_Ising_8_Gradient.py -------------------------------------------------------------------------------- /Transverse-field Ising model/LOCC-VQE_Ising_8_QMI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Transverse-field Ising model/LOCC-VQE_Ising_8_QMI.py -------------------------------------------------------------------------------- /Transverse-field Ising model/LOCC-VQE_Ising_8_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Transverse-field Ising model/LOCC-VQE_Ising_8_training.py -------------------------------------------------------------------------------- /Transverse-field Ising model/LOCC-VQE_sample_Ising_4_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Transverse-field Ising model/LOCC-VQE_sample_Ising_4_training.py -------------------------------------------------------------------------------- /Transverse-field Ising model/Unitary-VQE_Ising_8_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/Transverse-field Ising model/Unitary-VQE_Ising_8_training.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muzhou-Ma/LOCC-VQE/HEAD/requirements.txt --------------------------------------------------------------------------------