Skip to content
Snippets Groups Projects
Select Git revision
  • a02810477353c868d28013269cf61842ce438240
  • devel default
  • master
  • fo
  • jirka/typing
  • fo-base
  • mj/submit-images
  • jk/issue-96
  • jk/issue-196
  • honza/add-contestant
  • honza/mr7
  • honza/mrf
  • honza/mrd
  • honza/mra
  • honza/mr6
  • honza/submit-images
  • honza/kolo-vs-soutez
  • jh-stress-test-wip
  • shorten-schools
19 results

protocols.py

Blame
  • Makefile 268 B
    test: cuckoo_hash_test
    	./$<
    
    INCLUDE ?= .
    CXXFLAGS=-std=c++20 -O2 -Wall -Wextra -g -Wno-sign-compare -Wno-array-bounds -I$(INCLUDE)
    
    cuckoo_hash_test: cuckoo_hash_test.cpp test_main.cpp
    	$(CXX) $(CXXFLAGS) $^ -o $@
    
    clean:
    	rm -f cuckoo_hash_test
    
    .PHONY: clean test