'School 42' good algorithmic project. Optimized graph and minimum-cost flow (disjoint path finding).
This is the subject. (Sorry for Google, but by law, I can't upload tasks.)
More detailed description posted on wiki
- Project based on my libft
- Be welcome to use my project,
clone
andfork
it! - If you find a bug, please, create new
issue
(or contact with me in any way you want) to report about it! I will be glad to fix it! If you find a mistake in my spelling (because I'm from Russia, and English is not my native language), please notify me too! - If you
clone/fork
this lib and realise some new feature, you can createpull request
! I am definitely interested in this! - Also, I will be happy if you
follow
me, orstar
this project, ecpecially if you find it usefull, or use my code! - For all questions be welcome to contact me in any way you want 👋
Here is my mail: elijahkash.code@gmail.com
- run
make
ormake lem-in
to compilelem-in
- run
make clean
to delete tmp files after compile (onlylem-in
will be remain) - run
make fclean
to delete all files after compile - run
make cmake
if you change any filename.c/h to update the configuration of build (and include new file) - run
make re
to recompile all files
There is no real need to do this! If you change a file and run
make
, the project will recompile this file, as well as all files that depend on this file and relink the lem-in!
If you run make
or make lem-in
, the compiler will compile the project with the -O3 -Wall -Wextra -Werror
flags for better code performance and strict error checking!
But if you want to debug some code, you probably want to ignore warnings and be able to use a debugger (lldb, gdb, etc.).
In that case
- run
make debug
lem-in.debug
will be created, and compiler flags now will be -g3 -Wall -Wextra
.
Example of using:
- `./lem-in < ./test_maps/test_spec
For easy cheking of result use grep
:
./lem-in < ./test_maps/pylone_400_10_10_35_35_3_no_z | grep '#>'
Also you may use map generator (provided by Ecole42):
./test_maps/generator --big-superposition | ./lem-in | grep -E '#>|#Here'
For real nice and useful visualisation look here - my friend's @SemRunner implementation
If you are part of the 42 society, you now all about the norminette and you may skip this part.
Otherwise, you may discover some strange code
and /file_structure in this project.
This is becouse all project in 42 must be written in accordance with the NORM (Again, sorry for Google, but by law, I can't upload tasks.).
Here are the point that most affect the code:
- You cannot have more than 5 function-definitions in a
.c
file.
We have programm called norminette
. It check every project. If it found an error, project considered as FAIL
- See the LICENSE file for license rights and limitations (MIT).
- If you like my activity, you may say “thank you” to me and support me for any amount! Use 'Sponsor' button in github!