Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
c92d4e2
create a new project
EtiShkol Jul 24, 2024
3a73c42
delete unwanted files
EtiShkol Jul 24, 2024
21e0e72
add new branch
sariDaitch Aug 5, 2024
e4e0b24
new changes
shifi325 Aug 5, 2024
ff759e4
Merge pull request #30 from KamaTechOrg/disk_managment_master_w
shifi325 Aug 5, 2024
4f0f625
add array
shifi325 Aug 6, 2024
71a4b92
add the AVL tree with functions
sariDaitch Aug 6, 2024
1654820
Merge pull request #40 from KamaTechOrg/disk_managment_master_w
shifi325 Aug 6, 2024
7c61013
changes in array and stack
shifi325 Aug 7, 2024
32df7dc
fix the delete and insert functions
sariDaitch Aug 7, 2024
ed6957a
Adding comments to functions as well as adding tests
sariDaitch Aug 7, 2024
5282c24
adding notes
shifi325 Aug 7, 2024
6a91fbd
add doctest
sariDaitch Aug 7, 2024
41561bd
Merge pull request #49 from KamaTechOrg/disk_managment_master_w
sariDaitch Aug 7, 2024
f4ed89c
delete shared files
sariDaitch Aug 8, 2024
32a123f
merge with master branch
sariDaitch Aug 8, 2024
f709a58
fix errors after merge
sariDaitch Aug 8, 2024
880c294
Merge pull request #53 from KamaTechOrg/disk_managment_master_d
sariDaitch Aug 8, 2024
be04c72
save and intialize disk functions
shifi325 Aug 8, 2024
df9f93f
add doctests for all the avl tree functions
sariDaitch Aug 8, 2024
519660c
Merge pull request #55 from KamaTechOrg/disk_managment_master_d
sariDaitch Aug 8, 2024
fac9007
merge 08/08
shifi325 Aug 8, 2024
55353d0
Merge pull request #56 from KamaTechOrg/disk_managment_master_w
shifi325 Aug 8, 2024
457112d
add addFunction
shifi325 Aug 11, 2024
662abf5
add delete functions
sariDaitch Aug 11, 2024
3f6e1ae
Merge pull request #62 from KamaTechOrg/disk_managment_master_w
shifi325 Aug 11, 2024
27fd66b
add doctests for delete and add functions
sariDaitch Aug 11, 2024
ae3a385
Merge pull request #63 from KamaTechOrg/disk_managment_master_d
sariDaitch Aug 11, 2024
d4dcbc5
fix the errors in delete function
sariDaitch Aug 14, 2024
ba463c9
add check range and write exception-without errors
sariDaitch Aug 14, 2024
eadb44e
Merge pull request #68 from KamaTechOrg/disk_managment_master_d
sariDaitch Aug 14, 2024
1f7a00f
Merge remote-tracking branch 'origin/disk_managment_master' into disk…
shifi325 Aug 14, 2024
b0cd5d4
Adding a pointer to the tree and correcting the functions after adding
sariDaitch Aug 15, 2024
7883357
Merge pull request #70 from KamaTechOrg/disk_managment_master_d
sariDaitch Aug 15, 2024
170f5b4
add array for maps in loaded and more few functions+ tests
sariDaitch Aug 15, 2024
de7b76f
Merge pull request #72 from KamaTechOrg/disk_managment_master_d
sariDaitch Aug 15, 2024
9ee83df
Merge remote-tracking branch 'origin/disk_managment_master' into disk…
shifi325 Sep 2, 2024
5a6a9b0
fix the save and intialize functions
shifi325 Sep 2, 2024
fe51650
fix range function
shifi325 Sep 4, 2024
b58c80d
add mock function and test for save+initilaize
shifi325 Sep 8, 2024
fb81e20
fix
shifi325 Sep 9, 2024
37f63ec
add changes
shifi325 Sep 9, 2024
9ba1492
add changes
shifi325 Sep 9, 2024
170ff4c
add changes in doctest file
shifi325 Sep 9, 2024
5d08973
fix changes
shifi325 Sep 9, 2024
a69a83b
fix
shifi325 Sep 9, 2024
c177be9
add test for stack-save data
shifi325 Sep 10, 2024
c4dcdbf
add test for avl tree save data
shifi325 Sep 10, 2024
4826f7b
add test for avl save
shifi325 Sep 10, 2024
b535a2d
merge
shifi325 Sep 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@
*.exe
*.out
*.app

/Storage/x64
/Storage/.vs
*.user
*.filters
20 changes: 20 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
cmake_minimum_required(VERSION "3.0")

project(Disk_Mng_Master)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

file(GLOB C "./Disk_Mng_Master.c")
file(GLOB SYCL "./Disk_Mng_Master_Sycl.cpp")
file(GLOB DOCTEST "./Doctest.cpp")
set(SOURCE_FILES "doctest.h")
list(APPEND SOURCE_FILES ${C} ${SYCL} ${DOCTEST})



add_executable(Disk_Mng_Master ${SOURCE_FILES})

target_include_directories(Disk_Mng_Master PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
target_include_directories(Disk_Mng_Master PRIVATE DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN)

Loading