Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Advanced systems programming project one
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fork proxy
Advanced systems programming project one
Commits
917e2987
Commit
917e2987
authored
6 months ago
by
j2-pelczar
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
4a47b1ef
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+110
-0
110 additions, 0 deletions
README.md
with
110 additions
and
0 deletions
README.md
0 → 100644
+
110
−
0
View file @
917e2987
# GitLab Repository for Worksheet Implementations
## Overview
This repository contains solutions to the tasks provided in Worksheet 1 and Worksheet 2 of the advanced software development module.
The tasks explore advanced C++ concepts, such as memory management, template adaptation, and unit testing.
---
## Repository Structure
```
/
├── worksheet_one/
│ ├── task 1/ # Implements [description of Task 1]
│ ├── task 2/ # Implements [description of Task 2]
│ ├── task 3/ # Implements [description of Task 3]
│ ├── task 4/ # Implements [description of Task 4]
│ ├── tasks 2 + 3/ # Combines tasks 2 and 3 using templates
│ └── .vscode/ # IDE configuration files
│
├── worksheet_two/
│ ├── task 1 (bump allocator)/ # Implements a custom memory allocator
│ ├── task 2 (unit tests)/ # Unit tests for validation
│ ├── task 3/ # Extends features from prior tasks
│ ├── simpletest/ # Testing framework for Worksheet Two
│ └── .vscode/ # IDE configuration files
│
├── worksheet 1.pdf # Specifications for Worksheet 1
├── worksheet 2.pdf # Specifications for Worksheet 2
└── worksheet_zero/ # Ignored in the assessment
```
---
## Getting Started
### Prerequisites
-
**C++ Compiler**
: Ensure you have a C++17 compatible compiler (e.g., GCC or Clang).
-
**CMake**
: To build and run the project.
-
**Testing Framework**
: SimpleTest (provided in Worksheet Two).
### Clone the Repository
```
bash
git clone <repository-link>
cd
GitLab_repo
```
---
## Worksheet One
### Task Highlights
1.
**Task 1**
: Implements [details].
2.
**Task 2**
: Implements [details].
3.
**Task 3**
: Explores [details].
4.
**Task 4**
: Integrates [details].
5.
**Tasks 2 + 3 (Template Adaptation)**
: Combines tasks 2 and 3 into a reusable, template-based solution.
---
## Worksheet Two
### Task Highlights
1.
**Task 1 (Bump Allocator)**
:
-
Description: Implements a custom memory allocator for efficient memory use.
-
Demonstration: Run using the following commands:
```
bash
cd
worksheet_two/task 1
(
bump allocator
)
make
./run_allocator
```
2.
**Task 2 (Unit Tests)**
:
-
Description: Verifies functionality and robustness of implemented modules.
-
Demonstration:
```
bash
cd
worksheet_two/task 2
(
unit tests
)
make
test
```
3.
**Task 3**
:
-
Description: Extends functionality with [specific feature or goal].
-
Demonstration: Run using:
```
bash
cd
worksheet_two/task 3
make
./run_task3
```
---
## Demonstration
### Running the Code
-
Navigate to the desired task directory.
-
Use the provided Makefile or build instructions:
```
bash
make
./run_task
```
### Example Output
```
plaintext
[Insert example output or screenshots here showing successful runs.]
```
---
## Additional Notes
-
Ensure all dependencies and frameworks are correctly installed.
-
For troubleshooting, review the specifications in
`worksheet 1.pdf`
and
`worksheet 2.pdf`
.
---
## Contact
For any issues, please create a GitLab issue or contact the repository maintainer.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment