This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2022:projects:sll4 [2022/10/14 23:04] – [OUTPUT SPECIFICATIONS] hcordell | notes:data:fall2022:projects:sll4 [2022/10/19 23:18] (current) – [BACKGROUND] dmuck | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | =====FIXES===== | ||
+ | If you are getting unexplainable build errors on your own system when you run 'make default' | ||
+ | |||
+ | Firstly, it can be because your using the wrong version of gcc, the sll4 project files can only compile with version 9 of gcc. You can use the same version of gcc as lab46 by using the following commands (assuming you are using a Raspberry Pi with it's default OS) in this link: | ||
+ | [[https:// | ||
+ | |||
+ | If that does not fix the problem then you need to edit one of the Makefiles in the sll4 project directory. The offending Makefile is in the /src/list/ directory. Run the following command to edit that file: | ||
+ | <cli> | ||
+ | USER@SYSTEM: | ||
+ | </ | ||
+ | remove the following line of code (after the line that says '' | ||
+ | <cli> | ||
+ | @date +' | ||
+ | </ | ||
+ | You might have to change the semester to fall2022 instead of having it check for the semester by checking the directory. You can delete what SEMESTER is set to and insert fall2022 instead.\\ | ||
+ | |||
+ | Note that if you are working on your pi there may be no semester file to begin with, so to create it simply use cd / | ||
+ | |||
+ | |||
+ | Then try building the project again. | ||
+ | |||
=====BACKGROUND===== | =====BACKGROUND===== | ||
Once you upgrade to SLL4, you will now have a new file within the '' | Once you upgrade to SLL4, you will now have a new file within the '' | ||
Group is a new struct of data that will hold and link lists together. Just like you have a list of nodes, you will now have a group of lists, or a list of lists if you may. | Group is a new struct of data that will hold and link lists together. Just like you have a list of nodes, you will now have a group of lists, or a list of lists if you may. | ||
+ | |||
+ | |||
+ | In group struct: | ||
+ | |||
+ | List *initial; | ||
+ | List *closing; | ||
+ | |||
Group has eight new list-group-processing functions, that are in charge of manipulating lists within our data structure. Going up one level of abstraction, | Group has eight new list-group-processing functions, that are in charge of manipulating lists within our data structure. Going up one level of abstraction, | ||
+ | |||
+ | Take care to check the unit-test files for other functions that are being called in the event that you have not yet implemented them. | ||
=====SPECIFICATIONS===== | =====SPECIFICATIONS===== | ||
Line 10: | Line 40: | ||
* mkgroup | * mkgroup | ||
* rmgroup | * rmgroup | ||
- | * linsert | + | * Linsert |
- | * lappend | + | * Lappend |
- | * lobtain | + | * Lobtain |
- | * ldisplay | + | * Ldisplay |
- | * lgetpos | + | * Lgetpos |
- | * lsetpos | + | * Lsetpos |
Line 22: | Line 52: | ||
*For anybody interested in editing the wiki page, here is the dokuwiki user guide: https:// | *For anybody interested in editing the wiki page, here is the dokuwiki user guide: https:// | ||
=====PROGRAM===== | =====PROGRAM===== | ||
- | Functions should be similar if not identical to the previous functions located in /src/list/. As for a recommended way to complete these. | + | Functions should be similar if not identical to the previous functions located in /src/list/. As for a recommended way to complete these. It is highly recommended to reference (or even copy and modify if possible) your previous functions. This will drastically decrease your time spent on the project. When display is not finished, it will output "NOT YET IMPLEMENTED" |
+ | |||
+ | For // | ||
=====OUTPUT SPECIFICATIONS===== | =====OUTPUT SPECIFICATIONS===== | ||
Output should conform to the output of the unit tests, anything other than what is displayed inside the unit test is optional. If you are outputting anything other than the unit test, it would be a good idea to make sure it's fine instead of losing points trying to guess whether or not it is fine. | Output should conform to the output of the unit tests, anything other than what is displayed inside the unit test is optional. If you are outputting anything other than the unit test, it would be a good idea to make sure it's fine instead of losing points trying to guess whether or not it is fine. | ||
+ | |||
+ | // | ||
=====UNIT TESTS===== | =====UNIT TESTS===== | ||
- | Unit tests will rely upon one another as input/ | + | Unit tests will rely upon one another as input/ |
+ | |||
+ | An errors file will be created after running make, this may be helpful if things aren't compiling correctly. | ||
+ | =====DEBUGGING===== | ||
+ | Useful tools for debugging issues are gdb and examining the test files themselves. to utilize gdb, run the test program with the gdb command (not make check), with a command that might look like "gdb ./ |