corredted v1 results, v2 using hint for seach and last insert index cache as hint

This commit is contained in:
2022-12-22 23:51:59 +01:00
parent 72d00f759d
commit 47f406b786
8 changed files with 860 additions and 4 deletions

26
version2/CMakeLists.txt Normal file
View File

@@ -0,0 +1,26 @@
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
project(crdt_version2 CXX C)
add_library(crdt_version2 INTERFACE)
target_compile_features(crdt_version2 INTERFACE cxx_std_17)
target_include_directories(crdt_version2 INTERFACE "${PROJECT_SOURCE_DIR}")
########################################
add_executable(v2_test1
./test1.cpp
)
target_link_libraries(v2_test1 PUBLIC crdt_version2)
########################################
#add_executable(v2_test2
#./test2.cpp
#)
#target_link_libraries(v2_test2 PUBLIC crdt_version2)