-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Лабораторная работа 3 #61
Open
George-Amberson
wants to merge
4
commits into
UNN-ITMM-Software:master
Choose a base branch
from
George-Amberson:Lab3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1 @@ | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
language: cpp | ||
compiler: | ||
- gcc | ||
- clang | ||
before_script: | ||
- mkdir ../build | ||
- cd ../build | ||
script: | ||
- cmake ../mp2-lab2-matrix | ||
- make -j | ||
- cd ./bin/ | ||
- ./test_matrix | ||
notifications: | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
cmake_minimum_required(VERSION 2.8) | ||
|
||
set(PROJECT_NAME StackAndQueue) | ||
project(${PROJECT_NAME}) | ||
|
||
# TODO(Kornyakov): not sure if these lines are needed | ||
set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "Configs" FORCE) | ||
if(NOT CMAKE_BUILD_TYPE) | ||
set(CMAKE_BUILD_TYPE Release) | ||
endif() | ||
|
||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) | ||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) | ||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin) | ||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE}) | ||
|
||
#set(MP2_LIBRARY "${PROJECT_NAME}") | ||
set(MP2_CUSTOM "${PROJECT_NAME}") | ||
set(MP2_TESTS "test_${PROJECT_NAME}") | ||
set(MP2_INCLUDE "${CMAKE_CURRENT_SOURCE_DIR}/include") | ||
|
||
include_directories("${MP2_INCLUDE}" gtest) | ||
|
||
# BUILD | ||
add_subdirectory(include) | ||
#add_subdirectory(src) | ||
add_subdirectory(samples) | ||
add_subdirectory(gtest) | ||
add_subdirectory(test) | ||
|
||
# REPORT | ||
message( STATUS "") | ||
message( STATUS "General configuration for ${PROJECT_NAME}") | ||
message( STATUS "======================================") | ||
message( STATUS "") | ||
message( STATUS " Configuration: ${CMAKE_BUILD_TYPE}") | ||
message( STATUS "") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,84 @@ | ||
# Репозиторий для сдачи лабораторных работ по курсу "Алгоритмы и структуры данных" | ||
# Методы программирования 2: Верхнетреугольные матрицы на шаблонах | ||
|
||
[![Build Status](https://travis-ci.org/UNN-VMK-Software/mp2-lab1-set.svg)][travis] | ||
|
||
<!-- TODO | ||
- | ||
--> | ||
|
||
## Цели и задачи | ||
|
||
В рамках лабораторной работы ставится задача создания программных средств, поддерживающих эффективное хранение матриц специального вида (верхнетреугольных) и выполнение основных операций над ними: | ||
|
||
- сложение/вычитание; | ||
- копирование; | ||
- сравнение. | ||
|
||
В процессе выполнения лабораторной работы требуется использовать систему контроля версий [Git][git] и фрэймворк для разработки автоматических тестов [Google Test][gtest]. | ||
|
||
Перед выполнением работы студенты получают данный проект-шаблон, содержащий следующее: | ||
|
||
- Интерфейсы классов Вектор и Матрица (h-файл) | ||
- Начальный набор готовых тестов для каждого из указанных классов. | ||
- Набор заготовок тестов для каждого из указанных классов. | ||
- Тестовый пример использования класса Матрица | ||
|
||
Выполнение работы предполагает решение следующих задач: | ||
|
||
1. Реализация методов шаблонного класса `TVector` согласно заданному интерфейсу. | ||
1. Реализация методов шаблонного класса `TMatrix` согласно заданному интерфейсу. | ||
1. Обеспечение работоспособности тестов и примера использования. | ||
1. Реализация заготовок тестов, покрывающих все методы классов `TVector` и `TMatrix`. | ||
1. Модификация примера использования в тестовое приложение, позволяющее задавать матрицы и осуществлять основные операции над ними. | ||
|
||
## Используемые инструменты | ||
|
||
- Система контроля версий [Git][git]. Рекомендуется использовать один из | ||
следующих клиентов на выбор студента: | ||
- [Git](https://git-scm.com/downloads) | ||
- [GitHub Desktop](https://desktop.github.com) | ||
- Фреймворк для написания автоматических тестов [Google Test][gtest]. Не | ||
требует установки, идет вместе с проектом-шаблоном. | ||
- Среда разработки Microsoft Visual Studio (2008 или старше). | ||
- Опционально. Утилита [CMake](http://www.cmake.org) для генерации проектов по | ||
сборке исходных кодов. Может быть использована для генерации решения для | ||
среды разработки, отличной от Microsoft Visual Studio 2008 или 2010, предоставленных в данном проекте-шаблоне. | ||
|
||
## Общая структура проекта | ||
|
||
Структура проекта: | ||
|
||
- `docs` — инструкции по выполнению лабораторной работы, полезные документы. | ||
- `gtest` — библиотека Google Test. | ||
- `include` — директория для размещения заголовочных файлов. | ||
- `samples` — директория для размещения тестового приложения. | ||
- `sln` — директория с файлами решений и проектов для VS 2008 и VS 2010, | ||
вложенные директории `vc9` и `vc10` соответственно. | ||
- `src` — директория для размещения исходных кодов (cpp-файлы). | ||
- `test` — директория с модульными тестами и основным приложением, | ||
инициализирующим запуск тестов. | ||
- `README.md` — информация о проекте, которую вы сейчас читаете. | ||
- Служебные файлы | ||
- `.gitignore` — перечень расширений файлов, игнорируемых Git при добавлении | ||
файлов в репозиторий. | ||
- `CMakeLists.txt` — корневой файл для сборки проекта с помощью CMake. Может | ||
быть использован для генерации проекта в среде разработки, отличной от | ||
Microsoft Visual Studio. | ||
- `.travis.yml` — конфигурационный файл для системы автоматического | ||
тестирования Travis-CI. Тесты, входящие в состав шаблонного проекта, | ||
регулярно запускаются на удаленной [инфраструктуре][travis]. | ||
|
||
В решении содержатся следующие модули: | ||
|
||
- Модуль `utmatirx`, содержащий реализацию классов Вектор и Матрица (файл | ||
`./include/utmatrix.h`). Поскольку оба класса шаблонные, реализацию методов необходимо выполнять непосредственно в заголовочном файле. При этом интерфейсы классов должны | ||
оставаться неизменными. | ||
- Тесты для классов Вектор и Матрица (файлы `./test/test_tvector.cpp`, `./test/test_tmatrix.cpp`). | ||
- Пример использования класса Матрица (файл `./samples/sample_matrix.cpp`). | ||
|
||
<!-- LINKS --> | ||
|
||
[git]: https://git-scm.com/book/ru/v2 | ||
[gtest]: https://github.com/google/googletest | ||
[travis]: https://travis-ci.org/UNN-VMK-Software/mp2-lab1-set | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
set(target "gtest") | ||
|
||
add_library(${target} STATIC gtest-all.cc) | ||
|
||
if((${CMAKE_CXX_COMPILER_ID} MATCHES "GNU" OR | ||
${CMAKE_CXX_COMPILER_ID} MATCHES "Clang") AND | ||
(${CMAKE_SYSTEM_NAME} MATCHES "Linux")) | ||
set(pthread "-pthread") | ||
endif() | ||
|
||
target_link_libraries(${target} ${pthread}) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Описание от матриц осталось)