Quinoa all test code coverage report
Current view: top level - Control - Tags.hpp (source / functions) Hit Total Coverage
Commit: -128-NOTFOUND Lines: 24 24 100.0 %
Date: 2024-04-29 14:42:33 Functions: 0 0 -
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 24 48 50.0 %

           Branch data     Line data    Source code
       1                 :            : // *****************************************************************************
       2                 :            : /*!
       3                 :            :   \file      src/Control/Tags.hpp
       4                 :            :   \copyright 2012-2015 J. Bakosi,
       5                 :            :              2016-2018 Los Alamos National Security, LLC.,
       6                 :            :              2019-2021 Triad National Security, LLC.
       7                 :            :              All rights reserved. See the LICENSE file for details.
       8                 :            :   \brief     Tags
       9                 :            :   \details   Tags are unique types, used for metaprogramming.
      10                 :            : */
      11                 :            : // *****************************************************************************
      12                 :            : #ifndef Tags_h
      13                 :            : #define Tags_h
      14                 :            : 
      15                 :            : #include <string>
      16                 :            : #include "TaggedTuple.hpp"
      17                 :            : 
      18                 :            : //! Tags used as unique-type labels for compile-time code-generation
      19                 :            : namespace tag {
      20                 :            : 
      21                 :            : struct low {};
      22                 :            : struct high {};
      23         [ +  - ]:        195 : struct io { static std::string name() { return "io"; } };
      24         [ +  - ]:        195 : struct quiescence { static std::string name() { return "quiescence"; } };
      25         [ +  - ]:        195 : struct trace { static std::string name() { return "trace"; } };
      26         [ +  - ]:        195 : struct version { static std::string name() { return "version"; } };
      27         [ +  - ]:        195 : struct license { static std::string name() { return "license"; } };
      28         [ +  - ]:        195 : struct input { static std::string name() { return "input"; } };
      29         [ +  - ]:        195 : struct output { static std::string name() { return "output"; } };
      30         [ +  - ]:        195 : struct screen { static std::string name() { return "screen"; } };
      31         [ +  - ]:        195 : struct restart { static std::string name() { return "restart"; } };
      32         [ +  - ]:        195 : struct nrestart { static std::string name() { return "nrestart"; } };
      33         [ +  - ]:        195 : struct diag { static std::string name() { return "diag"; } };
      34                 :            : struct history { static std::string name() { return "history"; } };
      35                 :            : struct evalLB {};
      36         [ +  - ]:        195 : struct verbose { static std::string name() { return "verbose"; } };
      37         [ +  - ]:        195 : struct nonblocking { static std::string name() { return "nonblocking"; } };
      38         [ +  - ]:        195 : struct benchmark { static std::string name() { return "benchmark"; } };
      39                 :            : struct lboff {};
      40         [ +  - ]:        195 : struct feedback { static std::string name() { return "feedback"; } };
      41                 :            : struct reorder { static std::string name() { return "reorder"; } };
      42         [ +  - ]:        195 : struct lbfreq { static std::string name() { return "lbfreq"; } };
      43         [ +  - ]:        195 : struct rsfreq { static std::string name() { return "rsfreq"; } };
      44                 :            : struct pdf { static std::string name() { return "pdf"; } };
      45                 :            : struct nchare {};
      46                 :            : struct bounds {};
      47                 :            : struct ordinary {};
      48                 :            : struct central {};
      49                 :            : struct binsize { static std::string name() { return "binsize"; } };
      50                 :            : struct extent { static std::string name() { return "extent"; } };
      51                 :            : struct tolderef { static std::string name() { return "tolderef"; } };
      52                 :            : struct partitioner { static std::string name() { return "partitioner"; } };
      53                 :            : struct partitioned { static std::string name() { return "partitioned"; } };
      54                 :            : struct initpolicy { static std::string name() { return "initpolicy"; } };
      55                 :            : struct coeffpolicy { static std::string name() { return "coeffpolicy"; } };
      56                 :            : struct montecarlo {};
      57                 :            : struct matched {};
      58                 :            : struct compatibility {};
      59                 :            : struct bndint {};
      60                 :            : struct part { static std::string name() { return "part"; } };
      61         [ +  - ]:        195 : struct particles { static std::string name() { return "particles"; } };
      62                 :            : struct centroid {};
      63                 :            : struct tty { static std::string name() { return "tty"; } };
      64                 :            : struct dump {};
      65                 :            : struct plot {};
      66                 :            : struct glob {};
      67         [ +  - ]:        195 : struct control { static std::string name() { return "control"; } };
      68                 :            : struct stat { static std::string name() { return "stat"; } };
      69                 :            : struct field { static std::string name() { return "field"; } };
      70         [ +  - ]:        195 : struct surface { static std::string name() { return "surface"; } };
      71                 :            : struct b { static std::string name() { return "b"; } };
      72                 :            : struct S { static std::string name() { return "S"; } };
      73                 :            : struct r { static std::string name() { return "r"; } };
      74                 :            : struct c { static std::string name() { return "c"; } };
      75                 :            : struct c0 { static std::string name() { return "c0"; } };
      76                 :            : struct c1 {};
      77                 :            : struct c2 {};
      78                 :            : struct c3 { static std::string name() { return "c3"; } };
      79                 :            : struct c4 { static std::string name() { return "c4"; } };
      80                 :            : struct mean { static std::string name() { return "mean"; } };
      81                 :            : struct cov { static std::string name() { return "cov"; } };
      82                 :            : struct timescale { static std::string name() { return "timescale"; } };
      83         [ +  - ]:        195 : struct virtualization {static std::string name() { return "virtualization"; }};
      84                 :            : struct hydro {};
      85                 :            : struct mix {};
      86                 :            : struct frequency {};
      87                 :            : struct mixrate {};
      88                 :            : struct selected { static std::string name() { return "selected"; } };
      89                 :            : struct discr { static std::string name() { return "discr"; } };
      90                 :            : struct component { static std::string name() { return "component"; } };
      91                 :            : struct iter { static std::string name() { return "iter"; } };
      92                 :            : struct time { static std::string name() { return "time"; } };
      93                 :            : struct range { static std::string name() { return "range"; } };
      94                 :            : struct param { static std::string name() { return "param"; } };
      95                 :            : struct init { static std::string name() { return "init"; } };
      96                 :            : struct solve { static std::string name() { return "solve"; } };
      97         [ +  - ]:        195 : struct chare { static std::string name() { return "chare"; } };
      98                 :            : struct battery { static std::string name() { return "battery"; } };
      99                 :            : struct generator {};
     100         [ +  - ]:        195 : struct help { static std::string name() { return "help"; } };
     101         [ +  - ]:        195 : struct helpctr { static std::string name() { return "helpctr"; } };
     102                 :            : struct helpkw {};
     103                 :            : struct cmdinfo {};
     104                 :            : struct group { static std::string name() { return "group"; } };
     105                 :            : struct esup {};
     106                 :            : struct psup {};
     107                 :            : struct gid {};
     108                 :            : struct position_id { static std::string name() { return "position_id"; } };
     109                 :            : struct velocity_id { static std::string name() { return "velocity_id"; } };
     110                 :            : struct dissipation_id {
     111                 :            :   static std::string name() { return "dissipation_id"; } };
     112                 :            : struct mixmassfracbeta_id {
     113                 :            :   static std::string name() { return "mixmassfracbeta_id"; } };
     114                 :            : struct edge { static std::string name() { return "edge"; } };
     115                 :            : struct com {};
     116                 :            : struct queried {};
     117                 :            : struct responded {};
     118                 :            : struct refinserted {};
     119                 :            : struct discinserted {};
     120                 :            : struct disccreated {};
     121                 :            : struct workinserted {};
     122                 :            : struct distributed {};
     123                 :            : struct load {};
     124                 :            : struct bcast {};
     125                 :            : struct elem {};
     126                 :            : struct avecost {};
     127                 :            : struct stdcost {};
     128                 :            : struct update {};
     129                 :            : struct ch {};
     130                 :            : struct pe {};
     131                 :            : struct it {};
     132                 :            : struct node {};
     133                 :            : 
     134                 :            : DEFTAG(cmd);
     135                 :            : DEFTAG(ctrinfo);
     136                 :            : 
     137                 :            : DEFTAG(title);
     138                 :            : DEFTAG(nstep);
     139                 :            : DEFTAG(term);
     140                 :            : DEFTAG(t0);
     141                 :            : DEFTAG(dt);
     142                 :            : DEFTAG(cfl);
     143                 :            : DEFTAG(ttyi);
     144                 :            : DEFTAG(steady_state);
     145                 :            : DEFTAG(residual);
     146                 :            : DEFTAG(rescomp);
     147                 :            : DEFTAG(partitioning);
     148                 :            : DEFTAG(pelocal_reorder);
     149                 :            : DEFTAG(operator_reorder);
     150                 :            : DEFTAG(scheme);
     151                 :            : DEFTAG(ndof);
     152                 :            : DEFTAG(rdof);
     153                 :            : DEFTAG(flux);
     154                 :            : DEFTAG(limiter);
     155                 :            : DEFTAG(cweight);
     156                 :            : DEFTAG(shock_detector_coeff);
     157                 :            : DEFTAG(accuracy_test);
     158                 :            : DEFTAG(limsol_projection);
     159                 :            : 
     160                 :            : DEFTAG(ncomp);
     161                 :            : DEFTAG(pde);
     162                 :            : DEFTAG(problem);
     163                 :            : DEFTAG(transport);
     164                 :            : DEFTAG(compflow);
     165                 :            : DEFTAG(multimat);
     166                 :            : DEFTAG(diffusivity);
     167                 :            : DEFTAG(lambda);
     168                 :            : DEFTAG(u0);
     169                 :            : DEFTAG(alpha);
     170                 :            : DEFTAG(beta);
     171                 :            : DEFTAG(betax);
     172                 :            : DEFTAG(betay);
     173                 :            : DEFTAG(betaz);
     174                 :            : DEFTAG(r0);
     175                 :            : DEFTAG(p0);
     176                 :            : DEFTAG(ce);
     177                 :            : DEFTAG(kappa);
     178                 :            : DEFTAG(nmat);
     179                 :            : DEFTAG(prelax);
     180                 :            : DEFTAG(prelax_timescale);
     181                 :            : DEFTAG(intsharp);
     182                 :            : DEFTAG(intsharp_param);
     183                 :            : DEFTAG(depvar);
     184                 :            : DEFTAG(sys);
     185                 :            : DEFTAG(physics);
     186                 :            : 
     187                 :            : DEFTAG(material);
     188                 :            : DEFTAG(eos);
     189                 :            : DEFTAG(id);
     190                 :            : DEFTAG(gamma);
     191                 :            : DEFTAG(pstiff);
     192                 :            : DEFTAG(w_gru);
     193                 :            : DEFTAG(A_jwl);
     194                 :            : DEFTAG(B_jwl);
     195                 :            : DEFTAG(C_jwl);
     196                 :            : DEFTAG(R1_jwl);
     197                 :            : DEFTAG(R2_jwl);
     198                 :            : DEFTAG(rho0_jwl);
     199                 :            : DEFTAG(de_jwl);
     200                 :            : DEFTAG(rhor_jwl);
     201                 :            : DEFTAG(Tr_jwl);
     202                 :            : DEFTAG(Pr_jwl);
     203                 :            : DEFTAG(mu);
     204                 :            : DEFTAG(rho0);
     205                 :            : DEFTAG(cv);
     206                 :            : DEFTAG(k);
     207                 :            : DEFTAG(matidxmap);
     208                 :            : DEFTAG(eosidx);
     209                 :            : DEFTAG(matidx);
     210                 :            : DEFTAG(solidx);
     211                 :            : 
     212                 :            : DEFTAG(field_output);
     213                 :            : DEFTAG(interval);
     214                 :            : DEFTAG(time_interval);
     215                 :            : DEFTAG(time_range);
     216                 :            : DEFTAG(refined);
     217                 :            : DEFTAG(elemvar);
     218                 :            : DEFTAG(elemalias);
     219                 :            : DEFTAG(nodevar);
     220                 :            : DEFTAG(nodealias);
     221                 :            : DEFTAG(filetype);
     222                 :            : DEFTAG(sideset);
     223                 :            : DEFTAG(outvar);
     224                 :            : DEFTAG(diagnostics);
     225                 :            : DEFTAG(error);
     226                 :            : DEFTAG(format);
     227                 :            : DEFTAG(precision);
     228                 :            : DEFTAG(history_output);
     229                 :            : DEFTAG(point);
     230                 :            : DEFTAG(coord);
     231                 :            : 
     232                 :            : DEFTAG(ale);
     233                 :            : DEFTAG(smoother);
     234                 :            : DEFTAG(mesh_velocity);
     235                 :            : DEFTAG(mesh_motion);
     236                 :            : DEFTAG(meshforce);
     237                 :            : DEFTAG(dvcfl);
     238                 :            : DEFTAG(vortmult);
     239                 :            : DEFTAG(maxit);
     240                 :            : DEFTAG(tolerance);
     241                 :            : DEFTAG(move);
     242                 :            : DEFTAG(fntype);
     243                 :            : DEFTAG(fn);
     244                 :            : 
     245                 :            : DEFTAG(amr);
     246                 :            : DEFTAG(t0ref);
     247                 :            : DEFTAG(dtref);
     248                 :            : DEFTAG(dtref_uniform);
     249                 :            : DEFTAG(dtfreq);
     250                 :            : DEFTAG(maxlevels);
     251                 :            : DEFTAG(initial);
     252                 :            : DEFTAG(edgelist);
     253                 :            : DEFTAG(coords);
     254                 :            : DEFTAG(xminus);
     255                 :            : DEFTAG(xplus);
     256                 :            : DEFTAG(yminus);
     257                 :            : DEFTAG(yplus);
     258                 :            : DEFTAG(zminus);
     259                 :            : DEFTAG(zplus);
     260                 :            : DEFTAG(refvar);
     261                 :            : DEFTAG(tol_refine);
     262                 :            : DEFTAG(tol_derefine);
     263                 :            : DEFTAG(pref);
     264                 :            : DEFTAG(indicator);
     265                 :            : DEFTAG(ndofmax);
     266                 :            : DEFTAG(tolref);
     267                 :            : 
     268                 :            : DEFTAG(bc);
     269                 :            : DEFTAG(mesh);
     270                 :            : DEFTAG(dirichlet);
     271                 :            : DEFTAG(symmetry);
     272                 :            : DEFTAG(inlet);
     273                 :            : DEFTAG(outlet);
     274                 :            : DEFTAG(farfield);
     275                 :            : DEFTAG(extrapolate);
     276                 :            : DEFTAG(stag_point);
     277                 :            : DEFTAG(radius);
     278                 :            : DEFTAG(timedep);
     279                 :            : 
     280                 :            : DEFTAG(ic);
     281                 :            : DEFTAG(materialid);
     282                 :            : DEFTAG(pressure);
     283                 :            : DEFTAG(temperature);
     284                 :            : DEFTAG(velocity);
     285                 :            : DEFTAG(box);
     286                 :            : DEFTAG(meshblock);
     287                 :            : DEFTAG(blockid);
     288                 :            : DEFTAG(volume);
     289                 :            : DEFTAG(mass);
     290                 :            : DEFTAG(density);
     291                 :            : DEFTAG(energy);
     292                 :            : DEFTAG(energy_content);
     293                 :            : DEFTAG(xmin);
     294                 :            : DEFTAG(xmax);
     295                 :            : DEFTAG(ymin);
     296                 :            : DEFTAG(ymax);
     297                 :            : DEFTAG(zmin);
     298                 :            : DEFTAG(zmax);
     299                 :            : DEFTAG(orientation);
     300                 :            : DEFTAG(initiate);
     301                 :            : DEFTAG(init_time);
     302                 :            : DEFTAG(front_width);
     303                 :            : DEFTAG(front_speed);
     304                 :            : 
     305                 :            : DEFTAG(filename);
     306                 :            : DEFTAG(location);
     307                 :            : DEFTAG(transfer);
     308                 :            : 
     309                 :            : struct BirthdaySpacings {};
     310                 :            : 
     311                 :            : } // tag::
     312                 :            : 
     313                 :            : #endif // Tags_h

Generated by: LCOV version 1.14