Skip to content

Commit 56b6e3c

Browse files
authored
Add a vector class to GridKit (#418)
1 parent 31c9474 commit 56b6e3c

9 files changed

Lines changed: 1604 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
- Added `BusToSignalAdapter` component for communicating bus voltages and injection currents.
6262
- Added cmake-format hooks, including in pre-commit.
6363
- Added off-nominal tap ratio and phase shift support to the PhasorDynamics `Branch` model.
64+
- Added portable Vector class to GridKit
6465

6566
## v0.1
6667

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
add_subdirectory(SparseMatrix)
22
add_subdirectory(DenseMatrix)
3+
add_subdirectory(Vector)
34

45
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/MemoryUtils.hpp DESTINATION include/GridKit/LinearAlgebra)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
gridkit_add_library(
2+
dense_vector
3+
SOURCES Vector.cpp
4+
HEADERS Vector.hpp
5+
LINK_LIBRARIES GridKit::utilities_logger)

0 commit comments

Comments
 (0)