@@ -399,7 +399,7 @@ def calculate_power_flow(
399
399
- Dimension 1: Each updated element per batch for this component type.
400
400
- For inhomogeneous update batch (a dictionary containing two keys):
401
401
402
- - indptr: A 1D integer numpy array with length n_batch + 1. Given batch number k, the
402
+ - indptr: A 1D numpy int64 array with length n_batch + 1. Given batch number k, the
403
403
update array for this batch is data[indptr[k]:indptr[k + 1]]. This is the concept of
404
404
compressed sparse structure.
405
405
https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.csr_matrix.html
@@ -479,7 +479,7 @@ def calculate_state_estimation(
479
479
- Dimension 1: Each updated element per batch for this component type.
480
480
- For inhomogeneous update batch (a dictionary containing two keys):
481
481
482
- - indptr: A 1D integer numpy array with length n_batch + 1. Given batch number k, the
482
+ - indptr: A 1D numpy int64 array with length n_batch + 1. Given batch number k, the
483
483
update array for this batch is data[indptr[k]:indptr[k + 1]]. This is the concept of
484
484
compressed sparse structure.
485
485
https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.csr_matrix.html
@@ -549,7 +549,7 @@ def calculate_short_circuit(
549
549
- Dimension 1: each updated element per batch for this component type
550
550
- For inhomogeneous update batch (a dictionary containing two keys):
551
551
552
- - indptr: A 1D integer numpy array with length n_batch + 1. Given batch number k, the
552
+ - indptr: A 1D numpy int64 array with length n_batch + 1. Given batch number k, the
553
553
update array for this batch is data[indptr[k]:indptr[k + 1]]. This is the concept of
554
554
compressed sparse structure.
555
555
https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.csr_matrix.html
0 commit comments