├── .gitignore ├── LICENSE ├── README.md ├── logo.png ├── requirements.txt └── yellow_submarine ├── example.py └── maxcut_solver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOHRTECHNOLOGY/yellow_submarine/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOHRTECHNOLOGY/yellow_submarine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOHRTECHNOLOGY/yellow_submarine/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOHRTECHNOLOGY/yellow_submarine/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOHRTECHNOLOGY/yellow_submarine/HEAD/requirements.txt -------------------------------------------------------------------------------- /yellow_submarine/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOHRTECHNOLOGY/yellow_submarine/HEAD/yellow_submarine/example.py -------------------------------------------------------------------------------- /yellow_submarine/maxcut_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOHRTECHNOLOGY/yellow_submarine/HEAD/yellow_submarine/maxcut_solver.py --------------------------------------------------------------------------------