Skip to content
Snippets Groups Projects
Commit 6ed2051e authored by Jiří Kalvoda's avatar Jiří Kalvoda
Browse files

prográmek testujici spustitelnost juliového maxcutu

parent 85734c77
No related branches found
No related tags found
No related merge requests found
OMP_NUM_THREADS=1 cat <<AMEN | julia -t 1
include("src/MaxCut.jl");
import LinearAlgebra
LinearAlgebra.BLAS.set_num_threads(1)
import Convex
Convex.MOI.NumberOfThreads() = 1
import SCS
SCS.MOI.NumberOfThreads() = 1
using Random;
Random.seed!(3);
MaxCut.maxcut(zeros(Int, 10, 10))
MaxCut.maxcut(zeros(Int, 1000, 1000))
AMEN
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment