Coder Social home page Coder Social logo

cs371p-darwin's People

Contributors

mdelvalle avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

apathetics

cs371p-darwin's Issues

Submission

Rename "makefile.c++" to "makefile".
Fill out the Google Form and submit the ZIP file to Turnin.

Seg fault in grid.place_at(food1, 0, 0)

    int main() {
            World grid(10, 10);
            grid.print_world();

        Species f('f');
            f.add_instruction("left");
            f.add_instruction("go 0");
            Creature food1(f, 2);
            grid.place_at(food1, 0, 0);
            grid.print_world();

            return 0;
    }

    void World::place_at(Creature creature, int r, int c) {
            grid[r][c]->species = creature.species;
    }

Implementation

Use assert to check pre-conditions, post-conditions, argument validity, return-value validity, and invariants. Worry about this last, but your program should run as fast as possible and use as little memory as possible.

Species at column cols

Getting a seg fault for species trying to infect a creature to its left when its located in the last column

Acceptance tests

The grader's GitHub account will have a public Git repository for unit tests and acceptance tests.
It is critical that you clone the grader's public repo into a different directory than the one you're using for your private repo.
Write acceptance tests before your write the code. When you encounter a bug, write an acceptance test that fails, fix the bug, and confirm that the acceptance test passes. Write an auxiliary program to randomly generate acceptance tests. Create at least 200 lines of acceptance tests. Tests corner cases and failure cases. In your acceptance tests include five other students' acceptance tests. Push and pull only your acceptance tests to and from the grader's repository. Prepend - to the file names at GitHub (i.e. foo-RunDarwin.in and foo-RunDarwin.out). Reach consensus on the acceptance tests.
You must use Valgrind.

Species at row rows

Getting seg fault when creature is trying to infect another creature above it and it is located at the last row

Species at column 0

Getting a seg fault when our species was at column 0 and trying to infect something to its left

Species at row 0

Getting seg fault when creature is trying to infect another creature located below it

Git repository

Set up a private Git repository at GitHub, named cs371p-darwin.
Invite the grader to your repository. Commit at least 5 times. Commit once for each bug or feature. If you cannot describe your changes in a sentence, you are not committing often enough. Write meaningful commit messages and identify the corresponding issue in the issue tracker (below). Create a tag for important milestones (e.g. without a cache, with a lazy cache, etc.). Create a log of the commits. Push frequently. It is your responsibility to protect your code from the rest of the students in the class. If your code gets out, you are as guilty as the recipient of academic dishonesty.

Documentation

Use Doxygen to document the interfaces.
The above documentation only needs to be generated for Darwin.h. Comment each function meaningfully. Use comments only if you need to explain the why of a particular implementation. Choose a coding convention and be consistent. Use good variable names. Write readable code with good indentation, blank lines, and blank spaces.

Unit Tests

The grader's GitHub account will have a public Git repository for unit tests and acceptance tests.
It is critical that you clone the grader's public repo into a different directory than the one you're using for your private repo.
Write unit tests before you write the code. When you encounter a bug, write a unit test that fails, fix the bug, and confirm that the unit test passes. Write at least an average of 3 unit tests for each function. Tests corner cases and failure cases. Name tests logically. Push and pull the unit tests to and from the grader's repository. Prepend - to the file names at GitHub (i.e. foo-TestDarwin.c++ and foo-TestDarwin.out). Reach consensus on the unit tests.
You must use Valgrind.

Issue Tracker

The GitHub repository comes with an issue tracker.
Create an issue for each of the requirements in this table. Create an issue for each bug or feature, both open and closed. Describe and label each issue adequately. Create at least 10 more issues in addition to the requirements in this table.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.