• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Open-Sn / opensn / 17934392714

23 Sep 2025 01:57AM UTC coverage: 74.703% (+0.08%) from 74.627%
17934392714

push

github

web-flow
Merge pull request #766 from wdhawkins/python_doc_updates

Updating Python interface documentation

17718 of 23718 relevant lines covered (74.7%)

44392337.32 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/framework/data_types/parallel_vector/parallel_vector.cc
1
// SPDX-FileCopyrightText: 2024 The OpenSn Authors <https://open-sn.github.io/opensn/>
2
// SPDX-License-Identifier: MIT
3

4
#include "framework/data_types/parallel_vector/parallel_vector.h"
5

6
namespace opensn
7
{
8

9
ParallelVector::ParallelVector(uint64_t local_size,
71,262✔
10
                               uint64_t global_size,
11
                               const mpi::Communicator& communicator)
71,262✔
12
  : local_size_(local_size),
71,262✔
13
    global_size_(global_size),
71,262✔
14
    location_id_(communicator.rank()),
71,262✔
15
    process_count_(communicator.size()),
71,262✔
16
    comm_(communicator)
71,262✔
17
{
18
}
71,262✔
19

20
ParallelVector::ParallelVector(const ParallelVector& other) = default;
×
21

22
ParallelVector::ParallelVector(ParallelVector&& other) noexcept
×
23
  : local_size_(other.local_size_),
×
24
    global_size_(other.global_size_),
×
25
    location_id_(other.location_id_),
×
26
    process_count_(other.process_count_),
×
27
    comm_(other.comm_)
×
28
{
29
}
×
30

31
} // namespace opensn
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc