GMLC-TDC / HELICS

@@ -2617,7 +2617,7 @@
Loading
2617 2617
2618 2618
        } break;
2619 2619
        case CMD_QUERY_REPLY:
2620 -
            if (command.dest_id == global_broker_id_local) {
2620 +
            if (command.dest_id == global_broker_id_local || command.dest_id == direct_core_id) {
2621 2621
                processQueryResponse(command);
2622 2622
            } else {
2623 2623
                transmit(getRoute(command.dest_id), command);

@@ -483,8 +483,9 @@
Loading
483 483
std::string TimeCoordinator::printTimeStatus() const
484 484
{
485 485
    return fmt::format(
486 -
        R"raw({{"granted_time":{}, "exec":{}, "allow":{}, "value":{}, "message":{}, "minDe":{}, "minminDe":{}}})raw",
486 +
        R"raw({{"granted_time":{},"requested_time":{}, "exec":{}, "allow":{}, "value":{}, "message":{}, "minDe":{}, "minminDe":{}}})raw",
487 487
        static_cast<double>(time_granted),
488 +
        static_cast<double>(time_requested),
488 489
        static_cast<double>(time_exec),
489 490
        static_cast<double>(time_allow),
490 491
        static_cast<double>(time_value),
Files Coverage
src/helics 76.96%
Project Totals (210 files) 76.96%
12773.9
TRAVIS_OS_NAME=linux
1
codecov:
2
  notify:
3
    require_ci_to_pass: no
4
  branch: develop
5

6
coverage:
7
  precision: 2
8
  round: down
9
  range: '50...95'
10
  status:
11
    project: yes
12
    patch: yes
13
    changes: no
14

15
parsers:
16
  gcov:
17
    branch_detection:
18
      conditional: yes
19
      loop: yes
20
      method: no
21
      macro: no
22

23
comment:
24
  layout: 'header, diff'
25
  behavior: default
26
  require_changes: no
27

28
ignore:
29
  - 'ThirdParty'
30
  - 'examples'
31
  - 'tests'
32
  - 'interfaces'
33
  - 'src/helics/core/mpi'
34
  - '**/logger.*'
35
  - '**/loggerCore.*'
36
  - '**/zmqHelper.*'
37
  - 'src/helics/shared_api_library/internal/api_objects.h'
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading