RQRAO efficiently solves the MAX-CUT problem.
Paper: https://arxiv.org/abs/2403.02045
Software | Version |
---|---|
Python | 3.6.9 |
numpy | 1.19.5 |
scikit-learn | 0.24.2 |
networkx | 2.5.1 |
torch | 1.10.0 |
torchvision | 0.11.1 |
NOTE: The term rank2
used in classical.py
and scalability.ipynb
refers to the CirCut method.
If you find it useful to use this module in your research, please cite the following paper.
Kondo, R., Sato, Y., Raymond, R., Yamamoto, N., Recursive Quantum Relaxation for Combinatorial Optimization Problems
, arXiv:2403.02045, (2024).
In Bibtex format:
@article{kondo2024recursive,
title={Recursive Quantum Relaxation for Combinatorial Optimization Problems},
author={Kondo, Ruho and Sato, Yuki and Raymond, Rudy and Yamamoto, Naoki},
journal={arXiv preprint arXiv:2403.02045},
year={2024},
doi={10.48550/arXiv.2403.02045},
}
See the LICENSE file for details
To run Recursive QAOA, Goemans-Williamson, and CirCut, please follow the steps below:
Please compile the rqaoa.f90
file using the following command:
gfortran -o rqaoa rqaoa.f90
To run Goemans-Williamson, you must have MATLAB and SDPT-3 installed.
For more details about SDPT-3, please refer to the official site: SDPT-3 Official Site.
You are required to download code from an official website and modify specific parts before using it. Please follow the steps below to apply the necessary modifications.
First, download the required code from the author's page at Rice University:
After downloading the code, you need to modify Makefile
, main.f90
, and get_mod.f90
as follows:
Filename: src/Makefile
Before modification (lines 13 and 15):
.f90.o:
f90 -c $(FLAGS) $<
circut: $(OBJ)
f90 -o $@ $(FLAGS) $(OBJ)
After modification:
.f90.o:
gfortran -c $(FLAGS) $<
circut: $(OBJ)
gfortran -o $@ $(FLAGS) $(OBJ)
Filename: src/main.f90
Before modification (line 28):
WRITE(*,'(1X,A)') 'Enter file name (RETURN to quit): '
After modification:
! WRITE(*,'(1X,A)') 'Enter file name (RETURN to quit): '
Before modification (line 33):
READ (*,'(A)',IOSTAT=i) filename
After modification:
CALL GET_COMMAND_ARGUMENT(number=1, value=filename)
Before modification (lines 52-54):
WRITE(*,Fmt) 'total time:', timer(2); WRITE(*,*)
END DO Repeat
After modification:
WRITE(*,Fmt) 'total time:', timer(2); WRITE(*,*)
EXIT
END DO Repeat
Filename: src/get_mod.f90
Before modification (lines 158-159):
INTEGER :: time(1)
CALL SYSTEM_CLOCK( time(1) )
After modification:
INTEGER :: time(12)
CALL SYSTEM_CLOCK( time(12) )
Once the code has been modified, place the compiled file into the RQRAO directory.
Please follow the steps below:
- Change directory to the
src
directory and execute themake
command:
cd src
make
- Once the build is complete, move the generated
circut
file fromtests
to therqrao
directory:
mv tests/circut /path/to/rqrao/