One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| /* My personal project of a library that includes different types of template container structures. | |
| * | |
| * A work in progress with the objective of implementing the most useful data structures in C++ for later reuse in real projects and also studying data structures themselves. | |
| * | |
| * Implemented and tested structures until latest revision: | |
| * Node | |
| * Stack | |
| * Queue | |
| * List | |
| * KeyNode |
I hereby claim:
To claim this, I am signing this object:
| % Predicados | |
| problema(preparador_fisico) :- ruim(preparo_fisico). | |
| problema(equipe_tecnica) :- constantes(atritos), ruim(situacao_psicologica). | |
| problema(time) :- bom(preparo_fisico), ruim(situacao_de_gols). | |
| constantes(atritos) :- jogador(X), discute_tecnico(X). | |
| ruim(situacao_psicologica) :- jogador(X), suspenso(X). | |
| ruim(situacao_de_gols) :- gols_sofridos(X), gols_feitos(Y), X > Y. | |
| suspenso(X) :- cartao_vermelho(X). | |
| % Base de Conhecimento |